I would like to build a \"live coding framework\".
I should explain what is meant by \"live coding framework\". I\'ll do so by comparing live coding to traditional codin
Clojure has pretty much everything you are likely to want as a live coding language. Main highlights:
(future (some-function))
. More importantly, Clojure's STM and emphasis on high performance immutable data structures will take care of the more subtle concurrency aspects (e.g. what happens if I update a live data structure while it is in the middle of being rendered??)A couple of links you might find interesting: