shithub: mc

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