shithub: mc

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