shithub: mc

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

View raw version
use "die.use"

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