shithub: mc

ref: 1536f46ebd0795367f7490b079b5aede0c970fcb
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)
	;;
}