shithub: mc

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