shithub: mc

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