shithub: mc

ref: 2789d6a7b1965dc6902028a810c38a3a0a4c37dd
dir: /libstd/result.myr/

View raw version
use "die.use"

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