shithub: mc

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