shithub: mc

ref: 69ff322bc36cc9bbdc00528ef86031f631daf925
dir: /libstd/error.myr/

View raw version
use "die.use"

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