shithub: mc

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