shithub: mc

ref: 26fef326df126ced69c6eb4f531b487de37e23c7
dir: /test/stdopt-some.myr/

View raw version
use std

const main = {
	match `std.Some 42
	| `std.Some x:	std.exit(x)
	| `std.None:	std.exit(1)
	;;
}