Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@rafaelrinaldi
Created July 18, 2017 17:59
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 rafaelrinaldi/2e651686826b876979a58588b3a20e36 to your computer and use it in GitHub Desktop.
Save rafaelrinaldi/2e651686826b876979a58588b3a20e36 to your computer and use it in GitHub Desktop.
(ns private.tmp.units)
(defn- ounces->kg
[input]
(let [lb 16 ;; 1kg → 16lb
oz 2.2] ;; 1kg → 2.2oz
(->> (/ input lb oz) (format "%.3f kg"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment