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
// From analyzer/feature_tests.rs `test_basic_function`: minimal fn + exercised assert.
fn add(x: int, y: int) -> int {
    x + y
}

pub fn test_add_returns_sum() {
    assert_eq(add(40, 2), 42)
}