shithub: mc

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