Skip to content

Commit

Permalink
[clojure/es] Balance parens (#5253)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrebotha authored Feb 13, 2025
1 parent 5364bb3 commit 9a7151d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions es/clojure.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9a7151d

Please sign in to comment.