hare

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

commit 31eda300b8ae6e669c14df8933653c738594a9ca
parent 46ea6a859a8b8bf5603f94422e2fe26b5de84d72
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon,  1 Feb 2021 12:29:31 -0500

main.ha: style

This wasn't working before due to compiler bug that I put off fixing

Diffstat:
Mmain.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.ha b/main.ha @@ -15,7 +15,7 @@ export fn main() void = { for (true) { match (io::read(in, buf[..])) { err: io::error => match (err) { - err: io::closed => break, + io::closed => break, * => fatal(io::errstr(err)), }, n: size => match (io::write(os::stdout, buf[..n])) {