shithub: mc

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