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
// Test: Module support

pub mod math {
    pub fn add(a: int, b: int) -> int {
        a + b
    }
}

pub mod utils {
    pub fn greet(name: string) -> string {
        "Hello, " + name
    }
}