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
// Ported philosophy: arithmetic + asserts (from standard Rust regression style)

pub fn test_addition_and_comparison() {
    let result = 2 + 2
    assert_eq(result, 4)
}

pub fn test_subtraction() {
    assert_eq(10 - 7, 3)
}

pub fn test_comparisons() {
    assert_lt(3, 5)
    assert_gt(9, 4)
}