shithub: mc

ref: 0781d54100ac448eda8cc9e39bd931d47b21988a
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;;
	;;
}