Skip to content

Commit

Permalink
[clojure/de] Balance parens (#5257)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrebotha authored Feb 13, 2025
1 parent 8049396 commit c7b0011
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions de/clojure.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,9 @@ keymap ; => {:a 1, :b 2, :c 3}
; Kollektionen nützlich:
(->>
(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]

; Wenn du in einer Situation bist, in der du mehr Freiheit willst,
Expand Down

0 comments on commit c7b0011

Please sign in to comment.