shithub: mc

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