Welcome! Please see the About page for a little more info on how this works.
The following code produces different results in clojure and in clojurescript
(defmacro beep [& args] (cons 'list args)) (print (beep 0 1 2 3))
In clojure that code outputs (0 1 2 3) In clojurescript that code outputs (2 3)