shithub: mc

ref: 982a5bf2f128f46a3d8c814b199282435f64becb
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)
	;;
}