Can anyone please list some differences between Clojure and ClojureScript? (Please and thank you) Syntax wise differences?
12
votes
2 Answers
4
votes
13
votes
The full differences between Clojure and ClojureScript are listed in detail here on the ClojureScript website.
According to that page, the primary differences lie in:
- concurrent programming
- hosting env (JVM vs a JS VM or Google's Clojure compiler)
- numbers
- characters
- the read, and read-string methods are defined in a different place
- load, and load-file not yet implemented
- no eval in ClojureScript
- a few of the special forms aren't implemented