shithub: mc

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