shithub: mc

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

View raw version
use "die.use"

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