shithub: mc

ref: fe0c54bda8e70766480784336fc881567620410e
dir: /lib/std/result.myr/

View raw version
pkg std =
	type result(@a, @b) = union
		`Ok	@a
		`Err	@b
	;;
;;