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: Basic enum declaration with auto-derive

pub enum Direction {
    North,
    South,
    East,
    West,
}

pub enum Result {
    Ok(int),
    Err(string),
}