shithub: mc

ref: 08abd441a43b7bcac3be65746612a2ef96799c80
dir: /libstd/error.myr/

View raw version
use "die.use"

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