shithub: mc

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