Carp Logo

A statically typed lisp, without a GC, for real-time applications

Benefits

Example

Let’s say hello world!

          
(load-and-use SDL)

(defn draw [app rend state]
  (bg rend &(rgb 60 90 120)))

(defn main []
  (let [app (SDLApp.create "Hello World!" 300 300)]
    (SDLApp.run-static &app draw)))
        
github logo gitter logo