[clojure/es] Balance parens

This commit is contained in:
Henré Botha 2025-02-13 14:45:13 +01:00
parent 8049396fb8
commit 4c006944ac

View File

@ -294,9 +294,9 @@ keymap ; => {:a 1, :b 2, :c 3}
; operaciones de colecciones en particular:
(->>
(range 10)
(map inc) ;=> (map inc (range 10)
(filter odd?) ;=> (filter odd? (map inc (range 10))
(into [])) ;=> (into [] (filter odd? (map inc (range 10)))
(map inc) ;=> (map inc (range 10))
(filter odd?) ;=> (filter odd? (map inc (range 10)))
(into [])) ;=> (into [] (filter odd? (map inc (range 10))))
; Result: [1 3 5 7 9]
; Cuando estés en una situación donde quieras tener más libertad en donde