hare

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

commit 98729cc2c4ba605fdd8350793f876fef177b017c
parent f5dc0e9e7d7f8adeb1d775fd1127a5107acde6a9
Author: Sebastian <sebastian@sebsite.pw>
Date:   Tue, 12 Mar 2024 18:27:37 -0400

fmt: remove unused variable

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

diff --git a/fmt/print.ha b/fmt/print.ha @@ -28,7 +28,7 @@ export fn fprintf( fmt: str, args: field... ) (size | io::error) = { - let n = 0z, i = 0z; + let n = 0z; let it = iter(fmt, args); for (true) match (next(&it)) { case done => break;