shithub: mc

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