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
// Test: Module Declarations
// Tests that the parser supports module declarations

// Simple module declaration
mod utils;

// Public module declaration
pub mod math;
pub mod physics;

// Multiple modules
pub mod rendering;
pub mod audio;
pub mod world;

// Private module
mod internal;
mod helpers;