A statically typed lisp, without a GC, for real-time applications.
Go to file
2016-01-11 15:46:14 +01:00
img carps 2016-01-11 15:01:29 +01:00
README.md Update README.md 2016-01-11 15:46:14 +01:00

Carp

Logo

Carp is a programming language in the Lisp family. It's designed to work well for interactive and performance sensitive use cases like games, sound synthesis and visualizations.

The key features of Carp are the following:

  • No garbage collection or runtime system, all memory management is deterministic and compiled into the final binary executable
  • Static (100% inferred) type system that enables very fast code execution and fewer runtime errors
  • Dynamic code loading and execution enables interactive (REPL-driven) development of your program
  • No hidden performance penalties, everything that can slow down your program is explicit and visible in the code
  • Ownership system that enables a functional programming style with the performance characteristics of C