shithub: mc

ref: 8531896f8d21ba1e727262aaf5cd96043590b480
dir: /lib/std/result.myr/

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