shithub: mc

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

View raw version
use "die.use"

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