shithub: mc

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