shithub: mc

ref: 2f2e574cc824695de2d5e2b233063afd6e7814bb
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)
	;;
}