nREPL docs

This commit is contained in:
Michiel Borkent 2022-05-17 21:43:18 +02:00
parent 18e4d3639a
commit 1adadb1c3e
5 changed files with 107 additions and 55 deletions

15
doc/nrepl/playground.cljs Normal file
View file

@ -0,0 +1,15 @@
(ns 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? :)")