shithub: mc

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