Productionizing the GALA Build Stack: rules_gala, a Real Toolchain, and Gazelle
From rules welded inside the language repo to a standalone, registry-published rules_gala with a real toolchain and Gazelle BUILD generation.
Search for a command to run...
Articles tagged with #software-engineering
From rules welded inside the language repo to a standalone, registry-published rules_gala with a real toolchain and Gazelle BUILD generation.
Why GALA's IDE runs on two processes and the sync contract that keeps them honest
Resolving receiver types from transpiler metadata when you don't have one
When your transpiler knows the types but your editor doesn't
What breaks when you map functional programming onto Go's type system, and how testing infrastructure keeps it fixed
Let's implement a simple case class that represents a Time object that contains hours and minutes. For simplicity, we will use 24-hour clock. case class Time(hour: Hour, minutes: Minute) case class Hour(hour: Int) case class Minute(minute: Int) Now ...
