shithub: mc

ref: 2f39b00d65470909bee4e94ac58fe2a2be5a7050
dir: /libstd/error.myr/

View raw version
use "die.use"

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