Liking cljdoc? Tell your friends :D
Clojure only.

shuriken.debug

### Pretty debugging
raw docstring

debugcljmacro

(debug & forms)

Evaluates and prints a debug statement for each form. Returns the value of the last.

(debug (+ 1 2)
       (- 3 4))
; (+ 1 2): 3
; (- 3 4): -1
=> -1
Evaluates and prints a debug statement for each form.
Returns the value of the last.

```clojure
(debug (+ 1 2)
       (- 3 4))
; (+ 1 2): 3
; (- 3 4): -1
=> -1
```
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close