hasForLoops
===========
```Example from 1 languages: Chapel
for
```
```Example from 1 languages: Toit
for i := 0; i < end; i++:
```
```Example from 1 languages: Jule
// Jule has for loops with while-next iterations
let mut i = 0
for i < 10; i++ {
// ...
}
```
```Example from 1 languages: bog
let mut sum = 0
for let c in "hellö wörld"
match c
"h" => sum += 1
"e" => sum += 2
"l" => sum += 3
"ö" => sum += 4
"w" => sum += 5
"d" => sum += 6
```
```Example from 1 languages: Speedie
while i in 10
"hello: $i"
```
```Example from 1 languages: Slab
ul
for val, index in [1, 2]
li val: #(val), index: #(index)
```
*
Languages *with* hasForLoops include Chapel, C3, Toit, Jule, bog, Aardvark, Speedie, Slab, hecl
*
View all concepts with or missing a *hasForLoops* measurement
http://pldb.info/../lists/explorer.html#columns=rank~id~appeared~tags~creators~hasForLoops&searchBuilder=%7B%22criteria%22%3A%5B%7B%22condition%22%3A%22null%22%2C%22data%22%3A%22hasForLoops%22%2C%22origData%22%3A%22hasForLoops%22%2C%22type%22%3A%22num%22%2C%22value%22%3A%5B%5D%7D%5D%2C%22logic%22%3A%22AND%22%7D missing
http://pldb.info/../lists/explorer.html#columns=rank~id~appeared~tags~creators~hasForLoops&searchBuilder=%7B%22criteria%22%3A%5B%7B%22condition%22%3A%22!null%22%2C%22data%22%3A%22hasForLoops%22%2C%22origData%22%3A%22hasForLoops%22%2C%22type%22%3A%22num%22%2C%22value%22%3A%5B%5D%7D%5D%2C%22logic%22%3A%22AND%22%7D with
Built with Scroll v178.2.3