shithub: mc

ref: 3a3ccd605eab52fec23689955b8f61398d739ad2
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;;
	;;
}