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
// Simple game test to verify compiler codegen
use std::game::*

fn main() {
    // Test basic game types
    let position = Vec3::new(0.0, 0.0, 0.0)
    println("Position created: ({}, {}, {})", position.x, position.y, position.z)
    
    // Test Color
    let color = Color::rgb(1.0, 0.0, 0.0)
    println("Color created successfully!")
    
    println("All game framework types work!")
}