shithub: mc

ref: 5131214c8ddbd9a4f3a4b6c9acef575985ff867d
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)
	;;
}