shithub: mc

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