diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-11-05 11:05:46 +0100 |
---|---|---|
committer | Miran <narimiran@disroot.org> | 2019-11-05 11:05:46 +0100 |
commit | 3ba3307d61319984e3e8b1061f38402d53cf8f60 (patch) | |
tree | d01213de137a5f3216b5c8cf4cacb16c06c686e6 /tests/niminaction/Chapter1 | |
parent | ffa9a7405fe55f91d3816d3cf4b3b1b82ede21ff (diff) | |
download | Nim-3ba3307d61319984e3e8b1061f38402d53cf8f60.tar.gz |
remove deprecated procs (#12535)
Diffstat (limited to 'tests/niminaction/Chapter1')
-rw-r--r-- | tests/niminaction/Chapter1/various1.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/niminaction/Chapter1/various1.nim b/tests/niminaction/Chapter1/various1.nim index 688180fd2..4e2cb463d 100644 --- a/tests/niminaction/Chapter1/various1.nim +++ b/tests/niminaction/Chapter1/various1.nim @@ -19,7 +19,7 @@ proc showNumber(num: int | float) = showNumber(3.14) showNumber(42) -for i in 0 .. <10: +for i in 0 ..< 10: echo(i) block: # Block added due to clash. |