shithub: mc

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