循环

无限循环

loop {
    # ...
}

限次数的循环

loop 10 {
    # ...
}

for ... in ... 循环,需要设计对应的迭代器(,Iterator,)

迭代器可为内置类

for i in arr {
    # ...
}

点此查看原文