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
FROM golang:1.25-alpine

WORKDIR /sdk

# Copy go module files
COPY sdks/go/go.mod sdks/go/go.sum* ./

# Download dependencies
RUN go mod download || true

# Copy SDK source
COPY sdks/go/ ./

# Build
RUN go build -v ./...

# Run tests
CMD ["go", "test", "-v", "./..."]