windjammer 0.47.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: String literals in enum variants expecting String should auto-convert
pub enum Speaker {
    Player,
    NPC(string),
    System,
}

pub struct Message {
    pub speaker: Speaker,
    pub text: string,
}

fn main() {
    // This should work - string literal auto-converts to String
    let msg = Message {
        speaker: Speaker::NPC("Alice"),
        text: "Hello world",
    }
    
    println!("Message from NPC")
}