shithub: mc

ref: 1f07ea309194e550b726d4abc4295876854c3781
dir: /libstd/error.myr/

View raw version
use "die.use"

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