windjammer 0.48.0

A simple language inspired by Go, Ruby, and Elixir that transpiles to Rust - 80% of Rust's power with 20% of the complexity
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Test string interpolation
fn main() {
    let name = "Alice"
    let age = 30
    println!("Hello, ${name}! You are ${age} years old.")
    
    let x = 5
    let y = 10
    println!("${x} + ${y} = ${x + y}")
}