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
16
17
18
// Test std/log module
use std::log

fn main() {
    println!("Testing std/log module...")
    
    // Initialize logger
    init()
    
    // Test all log levels
    trace("This is a trace message")
    debug("This is a debug message")
    info("This is an info message")
    warn("This is a warning message")
    error("This is an error message")
    
    println!("std/log works! ✓")
}