shithub: mc

ref: 5f6738ea543372390b2647d6c9efc153c6f46b8f
dir: /test/voidmatch.myr/

View raw version
use std

const main = {
	match `std.Some void
	| `std.Some x:	std.put("ok\n")
	| `std.None:	std.put("fail\n")
	;;
}