shithub: mc

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