shithub: mc

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