shithub: mc

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