shithub: mc

ref: 7f5c1395bc44fd7cec4576a0feeb275cdd7ffb76
dir: /libstd/error.myr/

View raw version
use "die.use"

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