shithub: mc

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