shithub: mc

ref: eeb8989f663c7c2f7ed7e5f92e38bced908cf805
dir: /test/voidmatch.myr/

View raw version
use std

const main = {
	match `std.Some void
	| `std.Some x:	std.put("ok\n")
	| `std.None:	std.put("fail\n")
	;;
}