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
12
13
14
15
16
17
#[inline]
pub fn counter() -> i64 {
    let mut count = 0;
    count += 1;
    count += 1;
    count
}

#[inline]
pub fn accumulate(values: &Vec<i64>) -> i64 {
    let mut sum = 0;
    for value in values {
        sum += value;
    }
    sum
}