shithub: mc

ref: 5aaa3475118b9f72db2b02760f8fe5009aacefc2
dir: /libstd/result.myr/

View raw version
use "die.use"

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