shithub: mc

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