[clojure/de] Balance parens (#5257)

This commit is contained in:
Henré Botha 2025-02-13 16:01:12 +01:00 committed by GitHub
parent 8049396fb8
commit c7b0011092
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,