shithub: mc

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

View raw version
use "die.use"

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