shithub: mc

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