shithub: mc

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