shithub: mc

ref: 9b44da35f3246fb6c0293a615a9bbb001f13840d
dir: /libstd/error.myr/

View raw version
use "die.use"

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