shithub: mc

ref: 3ddd3c850f387a05175b5fe06469b94b5fa2a1ac
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)
	;;
}