shithub: mc

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

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