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
# Dockerfile for testing C# SDK examples
FROM mcr.microsoft.com/dotnet/sdk:9.0

WORKDIR /app

# Copy C# SDK
COPY sdks/csharp /app/sdks/csharp

# Build SDK
WORKDIR /app/sdks/csharp/Windjammer.SDK
RUN dotnet build

# Run examples
WORKDIR /app/sdks/csharp/Examples
CMD ["sh", "-c", "dotnet run HelloWorld.cs && dotnet run SpriteDemo.cs && dotnet run 3DScene.cs"]