shithub: mc

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

View raw version
use "die.use"

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