shithub: mc

ref: 177fc54cd73b3462a43da1cac81703945b7d0897
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")
	;;
}