shithub: mc

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