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
// Test: Automatic mut inference for local variables

pub fn counter() -> int {
    let mut count = 0
    count = count + 1
    count = count + 1
    count
}

pub fn accumulate(values: Vec<int>) -> int {
    let mut sum = 0
    for value in values {
        sum = sum + value
    }
    sum
}