Skip to content

Commit

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

; Jika anda mahu lebih fleksibel untuk meletakkan hasil perkiraan,
Expand Down

0 comments on commit 5364bb3

Please sign in to comment.