shithub: mc

ref: 4ea133ddac02791432ad26864fbdad4f1d49120f
dir: /libstd/error.myr/

View raw version
use "die.use"

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