Possible Duplicate:
Is Clojure closer to Scheme or Common Lisp from a beginner's perspective?
Clojure is a Lisp dialect that runs on the JVM.
Is Clojure considered Lispy or Schemey?
I mean is it like Lisp or like Scheme?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If by “Lispy” you mean “like Common Lisp,” then…
Clojure is “Lispy” because it has full (nonhygienic) macros and doesn’t guarantee tail-call optimization (except with
recur).Clojure is “Schemey” because it has a single namespace for both functions and values (it is a Lisp-1).