shithub: mc

ref: 730217466af331194862aef9a100b76e44520b5c
dir: /libstd/error.myr/

View raw version
use "die.use"

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