shithub: mc

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