shithub: mc

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

View raw version
use "die.use"

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