Skip to content

Instantly share code, notes, and snippets.

@digash
Created October 27, 2009 21:38
Show Gist options
  • Save digash/219979 to your computer and use it in GitHub Desktop.
Save digash/219979 to your computer and use it in GitHub Desktop.
(ns filters)
(defn filter-even-gt-500 [num]
(and (> num 500) (even? num)))
(defn filter-odd-gt-500 [num]
(and (> num 500) (odd? num)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment