shithub: mc

ref: de4e4e086705df3cf6ea86e92151aff077a8e768
dir: /test/stdopt-some.myr/

View raw version
use std

const main = {
	match `std.Some 42
	| `std.Some x:	std.exit(x)
	| `std.None:	std.exit(1)
	;;
}