shithub: mc

ref: 6e88e5d101fff277d7bbbdcbcdf4ded539000ce7
dir: /test/stdopt-none.myr/

View raw version
use std

const f = {
	-> `std.None
}

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