shithub: mc

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