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
fn main() {
    let name = "Alice";
    let age = 30;
    println!("Name: {}", name);
    println!("Age: {}", age);
    println!("Hello, {}! You are {} years old.", name, age);
}