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
// Test: Undefined variable and function errors
// Expected: Should show "Variable not found" and "Function not found"

fn main() {
    // Test 1: Undefined variable
    println!("{}", undefined_var)
    
    // Test 2: Undefined function
    undefined_function()
    
    // Test 3: Undefined method
    let s = "hello"
    s.undefined_method()
}