shithub: mc

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