shithub: mc

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