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
// Test file with intentional errors for error mapping demo

fn main() {
    // Error 1: Type mismatch
    let x: int = "hello"
    
    // Error 2: Unknown function
    unknown_function()
    
    // Error 3: Unknown type
    let y: UnknownType = 42
    
    println!("This won't compile")
}