hare

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

commit dd83b0b3c30701d35366065239d2508afff9bbcb
parent 287b3ec7078a7f2fcd3465a8cac382554a256450
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri,  6 May 2022 22:50:17 -0400

strings: style fix

Signed-off-by: Sebastian <sebastian@sebsite.pw>

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

diff --git a/strings/iter.ha b/strings/iter.ha @@ -134,7 +134,7 @@ export fn iterstr(iter: *iterator) str = { s = riter("にちは"); const expected3 = ['は', 'ち', 'に']; - for (let i = 0z; i< len(expected3); i += 1) { + for (let i = 0z; i < len(expected3); i += 1) { match (next(&s)) { case let r: rune => assert(r == expected3[i]);