shithub: mc

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