Skip to content

Instantly share code, notes, and snippets.

@schmee
Created August 28, 2014 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schmee/b60bb0285a3773f3c683 to your computer and use it in GitHub Desktop.
Save schmee/b60bb0285a3773f3c683 to your computer and use it in GitHub Desktop.
(defn if-user [user f]
(let [to (@clients user)]
(if to
(do
(f to)
true)
false)))
(defn if-not-user [user f]
(let [to (@clients user)]
(if-not to
(do
(f)
true)
false)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment