ClojureREPL icon indicating copy to clipboard operation
ClojureREPL copied to clipboard

Clojure instaREPL for web

Results 4 ClojureREPL issues
Sort by recently updated
recently updated
newest added

At http://web.clojurerepl.com/ Shouldn't this evaluate to true?: ``` clojure (= 8 (let [double-dec (comp dec dec)] double-dec 10)) ``` rather than this: ``` clojure (= 10 (let [double-dec (comp dec...

If you try this: ``` clojure (defn square [x] (* x x)) (= 25 (let [inc-and-square (comp square inc)] (inc-and-square 4 9))) ``` at http://web.clojurerepl.com/ you get error: ``` shell...

Made the examples parenthesis style confront to the style guide: https://github.com/bbatsov/clojure-style-guide#gather-trailing-parens

The result of `(str "d--" " --D")` looks like `d-- --D` on the page, despite appearing correctly as ``` d-- --D ``` in the HTML div. Consider using the ``...