shithub: mc

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