shithub: mc

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