nim 中的循环
For loops in nim
我想知道如何在 Nim 中创建 for 循环。
到目前为止,这是我的代码
int i = 1
# for loop expected here
请帮忙。
您可以在 For statement section of the official Nim Tutorial:
中找到这个版本和其他版本的 for 循环
echo "Counting to ten: "
for i in countup(1, 10):
echo i
# --> Outputs 1 2 3 4 5 6 7 8 9 10 on different lines
要查找教程,请转至位于 https://nim-lang.org/, click on the learn tab, and finally on the Tutorial, part 1 link 的主站点。
我想知道如何在 Nim 中创建 for 循环。
到目前为止,这是我的代码
int i = 1
# for loop expected here
请帮忙。
您可以在 For statement section of the official Nim Tutorial:
中找到这个版本和其他版本的 for 循环echo "Counting to ten: "
for i in countup(1, 10):
echo i
# --> Outputs 1 2 3 4 5 6 7 8 9 10 on different lines
要查找教程,请转至位于 https://nim-lang.org/, click on the learn tab, and finally on the Tutorial, part 1 link 的主站点。