shithub: mc

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