ruchy 4.2.0

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
1
2
3
4
5
6
7
8
9
// Example 8: Lists
// Tests: List operations
// Expected: 3

fun main() {
    let numbers = [1, 2, 3, 4, 5]
    let length = numbers.len()
    println(length)
}