carp is an open source programming language created in 2016 by Erik Svedäng.
| #222on PLDB | 10Years Old |
git clone https://github.com/carp-lang/carpA statically typed lisp, without a GC, for real-time applications.
;; Hello world in Carp
(println "hello world")| Feature | Supported | Example | Token |
|---|---|---|---|
| Strings | ✓ | "Hello world" | " |
| Print() Debugging | ✓ | println | |
| Comments | ✓ | ; A comment | |
| Line Comments | ✓ | ; A comment | ; |
| Static Typing | ✓ | ||
| Semantic Indentation | X | ||
| Garbage Collection | X |