Skip to content

Commit

Permalink
[clojure/fr] Balance parens (#5254)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrebotha authored Feb 13, 2025
1 parent b313285 commit f5dae9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fr/clojure.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@ ressemblent à toutes les autres formes:
; étage en dernière position. Par exemple:
(->>
(range 10)
(map inc) ;=> Génère ici (map inc (range 10)
(filter odd?) ;=> Génère ici (filter odd? (map inc (range 10))
(into [])) ;=> Génère ici (into [] (filter odd? (map inc (range 10))), ce qui est évalué au final à;
(map inc) ;=> Génère ici (map inc (range 10))
(filter odd?) ;=> Génère ici (filter odd? (map inc (range 10)))
(into [])) ;=> Génère ici (into [] (filter odd? (map inc (range 10)))), ce qui est évalué au final à;
; [1 3 5 7 9]

; Quand vous êtes dans une situation où vous voulez plus de liberté pour choisir
Expand Down

0 comments on commit f5dae9b

Please sign in to comment.