shithub: mc

ref: 10aacae6e0d47aa51731453998dbfcec1bbb6641
dir: /libstd/error.myr/

View raw version
use "die.use"

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