clojure is a dynamically typed, functional language.
it has immutable and persistent data structure
clojure syntax
work with Java libraries
work with Javascript libraries
def
str
read-string
(def a 1)
(str a)
(read-string a)
(Math/pow 2 2)
(Integer/parseInt a)
…