shithub: mc

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