shithub: mc

ref: 10b4f7d216570e8a745f4758ed195348de50b4d5
dir: /libstd/result.myr/

View raw version
use "die.use"

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