diff options
| -rw-r--r-- | clojure.html.markdown | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/clojure.html.markdown b/clojure.html.markdown index 16771e25..20812a9b 100644 --- a/clojure.html.markdown +++ b/clojure.html.markdown @@ -298,8 +298,8 @@ keymap ; => {:a 1, :b 2, :c 3}  (as-> [1 2 3] input    (map inc input);=> You can use last transform's output at the last position    (nth input 2) ;=>  and at the second position, in the same expression -  (conj [4 5 6] input [8 9 10])) ;=> or in the middle ! - +  (conj [4 5 6] input 8 9 10)) ;=> or in the middle ! +                               ; Result: [4 5 6 4 8 9 10]  ; Modules | 
