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
1
2
3
4
5
6
7
8
9
10
11
12
13
// TDD: Minimal test for borrowed param deref in comparison
// Bug #5 simplified - just the comparison issue

fn test_comparison(name: string) -> bool {
    let stored = "hello".to_string();
    return stored == name;  // Should work: string == &String with auto-deref
}

fn main() {
    let n = "hello".to_string();
    let result = test_comparison(n);
    println!("Result: {}", result);
}