shithub: mc

ref: d5869067c222619979e82e95ca511cb1d217ce18
dir: /libstd/result.myr/

View raw version
use "die.use"

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