shithub: mc

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