shithub: mc

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