scittle/cljs/nrepl_playground.cljs
Michiel Borkent c80b3d9cab update build
2022-05-17 21:20:57 +02:00

16 lines
246 B
Clojure

(ns nrepl-playground)
(+ 1 2 3)
(->
(js/document.getElementsByTagName "body")
first
(.append
(doto (js/document.createElement "p")
(.append
(js/document.createTextNode "there")))))
(defn foo [])
(js/alert "Isn't this cool? :)")