Skip to content

Commit b110836

Browse files
committedMar 9, 2015
add samples/repl/repl.clj to simplify browser REPL testing
1 parent 225e51a commit b110836

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎samples/repl/repl.clj

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
(require '[cljs.closure :as cljsc])
2+
(require '[cljs.repl :as repl])
3+
(require '[cljs.repl.browser :as brepl])
4+
5+
(repl/repl
6+
(brepl/repl-env)
7+
:init (fn []
8+
(cljsc/build "src" {:output-to "main.js"}))
9+
:repl-verbose true)

0 commit comments

Comments
 (0)
Please sign in to comment.