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
# Dockerfile for testing C++ SDK examples
FROM gcc:16

WORKDIR /app

# Install CMake
RUN apt-get update && apt-get install -y \
    cmake \
    ninja-build \
    git \
    && rm -rf /var/lib/apt/lists/*

# Copy C++ SDK
COPY sdks/cpp /app/sdks/cpp

# Build examples
WORKDIR /app/sdks/cpp
RUN mkdir -p build && cd build && \
    cmake .. -GNinja && \
    ninja

# Run tests
CMD ["sh", "-c", "./build/examples/hello_world && ./build/examples/math_demo && ./build/examples/sprite_demo && ./build/examples/3d_scene"]