Skip to content

Instantly share code, notes, and snippets.

@christianromney
Forked from ddeaguiar/gist:8589440
Last active January 4, 2016 08:39
Show Gist options
  • Save christianromney/8597280 to your computer and use it in GitHub Desktop.
Save christianromney/8597280 to your computer and use it in GitHub Desktop.
(defn filter-col [a]
(filter (juxt #(< 30 %) odd?) a))
(defn report-results [col]
(println col)
col)
(-> (range 100)
filter-col
report-results)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment