shithub: mc

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