shithub: mc

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

View raw version
use "die.use"

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