| Paste number 81021: | coding style |
| Pasted by: | chousuke |
| When: | 2 years, 8 months ago |
| Share: | Tweet this! | http://paste.lisp.org/+1QIL |
| Channel: | #clojure |
| Paste contents: |
;C-style... not very common
(defn my-map [f coll]
(map
(fn [item] (send-off (agent nil) (fn [_] (f item))))
coll)
)
)
; below is traditional style:
(defn my-map [f coll]
(map
(fn [item] (send-off (agent nil) (fn [_] (f item))))
coll)))
This paste has no annotations.