shithub: mc

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