shithub: mc

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

View raw version
use "die.use"

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