shithub: mc

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