This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
= P:Cubed Clojure Language Learning Resources = | |
(Taken from P-Cubed internal wiki. Public site = www.p-cubed.co.za) | |
Clojure is a dynamic programming language that targets the Java Virtual Machine (and the CLR, and JavaScript). | |
It is designed to be a general-purpose language, combining the approachability and interactive development of a scripting language with an efficient and robust infrastructure for multithreaded programming. | |
It also focusses a lot on handling concurrency elegantly. | |
Taster of the language: http://www.tryclj.com/ | |
While it's dynamically typed by default, it can be optionally statically typed using core.typed. |