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
// Basic Windjammer Tests

fn test_math() {
    let x = 5
    let y = 10
    let sum = x + y
    assert(sum == 15)
}

fn test_strings() {
    let name = "Windjammer"
    assert(name == "Windjammer")
}

fn test_booleans() {
    let is_true = true
    let is_false = false
    assert(is_true)
    assert(!is_false)
}