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 that use crate:: paths are preserved correctly in generated code

use crate::ffi

pub struct TestStruct {
    value: int,
}

impl TestStruct {
    pub fn new() -> TestStruct {
        TestStruct { value: 42 }
    }
}