shithub: mc

ref: 8fda8a0adbb44f4e63bb86256d9f56700d79f301
dir: /test/matchvoid.myr/

View raw version
use std

const main = {
	match `std.Some void
	| `std.Some void:	std.put("ok\n")
	| `std.None:	std.put("nope\n")
	;;
}