shithub: mc

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

View raw version
use "die.use"

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