shithub: mc

ref: 95fc77c94bec1b7e1d3df3abd6706bec795225e0
dir: /libstd/error.myr/

View raw version
use "die.use"

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