shithub: mc

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