shithub: mc

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