shithub: mc

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