shithub: mc

ref: bd0724eccecfb0ea9651cf8d5b5f8d6bfaca6e4c
dir: /test/stdopt-none.myr/

View raw version
use std

const f = {
	-> `std.None
}

const main = {
	match f()
	| `std.Some x:	std.exit(x)
	| `std.None:	std.exit(42)
	;;
}