shithub: mc

ref: c865961b4fbba0243c2f548e4373bb03d223d52f
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")
	;;
}