shithub: mc

ref: 3ec885ae37703028d40d8308bfe1a017307a5e4e
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)
	;;
}