shithub: mc

ref: 6c6a15bf92f7a18265b080348491b831f523fd4e
dir: /libstd/error.myr/

View raw version
use "die.use"

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