shithub: mc

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