shithub: mc

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