shithub: mc

ref: fc1425f6388e112984cce1bf64910be2a656367a
dir: /test/stdopt-none.myr/

View raw version
use std

const f = {
	-> `std.None
}

const main = {
	match f()
	| `std.Some x:	-> x
	| `std.None:	-> 42
	;;
}