shithub: mc

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