shithub: mc

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