shithub: mc

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