shithub: mc

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