shithub: mc

ref: 19dceaeb821c3288d0b593bb9ab495906b8bbaa4
dir: /libstd/error.myr/

View raw version
use "die.use"

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