MIX YOUR LOGIC.
COMPILE EVERYWHERE.

Chimerix is not just a language. It's a genetic engineering tool for your codebase. Combining LSP-native architecture with Built-in Dependency Injection.

► Open Source. ► Experimental. ► Fast.

; Define a Point struct
          Point = (
          x = %0
          y = %1
          )

          ; Extend it dynamically
          PointWithSum = Point.(
          sum = x + y
          )

          p = PointWithSum:10:12
          p.sum ; returns 22