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