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
14
15
// Test simple module import

use std::test_simple

fn main() {
    println!("Testing module system...")
    
    let msg = test_simple.hello()
    println!("Module says: {}", msg)
    
    let result = test_simple.add(10, 20)
    println!("10 + 20 = {}", result)
    
    println!("✅ Module test complete!")
}