shithub: mc

ref: d1ff1cf60286cc672d269eaeef62c1bd3134d408
dir: /libstd/error.myr/

View raw version
use "die.use"

pkg std =
	type error(@a, @b) = union
		`Success	@a
		`Failure	@b
	;;
;;