ruchy 4.2.1

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
1
2
3
4
5
6
7
8
9
// Example 6: Loops
// Tests: For loop iteration
// Expected: 0, 1, 2, 3, 4

fun main() {
    for i in [0, 1, 2, 3, 4] {
        println(i)
    }
}