shithub: mc

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

View raw version
use "die.use"

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