shithub: mc

ref: 1305df9b20460769d853304a8bc2ad69bc178d0a
dir: /libstd/error.myr/

View raw version
use "die.use"

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