shithub: mc

ref: 30e4700f5d0ce493c71289ce53bac2fb18c4664d
dir: /libstd/error.myr/

View raw version
use "die.use"

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