shithub: mc

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