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: inline modules with extern fn declarations
// This is used in render_api.wj for FFI declarations

pub fn test_function() {
    ffi::my_extern_function(42)
}

mod ffi {
    extern fn my_extern_function(value: int);
}