shithub: mc

ref: 781d516f7d1c081f2d90b9f94b30b3400f7abd5f
dir: /test/stdopt-none.myr/

View raw version
use std

const f = {
	-> `std.None
}

const main = {
	match f()
	| `std.Some x:	std.exit(x)
	| `std.None:	std.exit(42)
	;;
}