Skip to content

Instantly share code, notes, and snippets.

@wilkes
Created January 16, 2009 21:21
Show Gist options
  • Save wilkes/48141 to your computer and use it in GitHub Desktop.
Save wilkes/48141 to your computer and use it in GitHub Desktop.
(defn- macosx? []
(-> "os.name" System/getProperty .toLowerCase
(.startsWith "mac os x")))
(defn- macosx? []
(.startsWith (.toLowerCase (System/getProperty "os.name"))
"mac os x"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment