This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(filter | |
;; The filtering function. | |
(fn [x] (<= 0 x 100)) | |
;; The sequence to be filtered. | |
(map | |
;; The mapping function. | |
(fn [x] (* x 3)) |