shithub: mc

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

View raw version
use "die.use"

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