shithub: mc

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