shithub: mc

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