shithub: mc

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