hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit f0c4a829872de88e71ac2d58579adfaf3b864f65
parent bc7096ce501314baeee68f236284a5b215fc298d
Author: Bor Grošelj Simić <bor.groseljsimic@telemach.net>
Date:   Sun, 28 Nov 2021 23:58:11 +0100

import io where needed

Signed-off-by: Bor Grošelj Simić <bor.groseljsimic@telemach.net>

Diffstat:
Mnet/dial/ip.ha | 1+
Mnet/errors.ha | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/net/dial/ip.ha b/net/dial/ip.ha @@ -1,4 +1,5 @@ // Provides default dialers for tcp and udp +use io; use net; use net::ip; use net::tcp; diff --git a/net/errors.ha b/net/errors.ha @@ -1,4 +1,5 @@ use errors; +use io; // An attempt was made to use an unsupported protocol. export type unknownproto = !void;