shithub: mc

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

View raw version
use "die.use"

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