shithub: mc

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