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
10
11
// Example 7: String Operations
// Tests: String concatenation and methods
// Expected: "HELLO WORLD"

fun main() {
    let greeting = "hello"
    let target = "world"
    let message = greeting + " " + target
    let upper = message.to_uppercase()
    println(upper)
}