shithub: mc

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