shithub: mc

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

View raw version
use "die.use"

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