Skip to content

Instantly share code, notes, and snippets.

@sztamas
Created August 5, 2020 04:50
Show Gist options
  • Save sztamas/29ef8173f606e3ca4cf14970bc6f85dc to your computer and use it in GitHub Desktop.
Save sztamas/29ef8173f606e3ca4cf14970bc6f85dc to your computer and use it in GitHub Desktop.
The Frugal Gentleman
(defn select-georges-wine [wines]
(condp = (count wines)
0 nil
1 (first wines)
(second (sort-by :price wines))))
(def choose-wine (comp :name select-georges-wine))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment