clojureを思い出すために、どうでもいいコードを書く。
bmi
;; BMI計算式
(defn calc-bmi [height weight]
(/ weight (* height height)))
(let [height 1.78 weight 52]
(calc-bmi height weight))
なお、痩せ過ぎな模様
Go to list of users who liked
More than 5 years have passed since last update.
clojureを思い出すために、どうでもいいコードを書く。
;; BMI計算式
(defn calc-bmi [height weight]
(/ weight (* height height)))
(let [height 1.78 weight 52]
(calc-bmi height weight))
なお、痩せ過ぎな模様
Register as a new user and use Qiita more conveniently
Go to list of users who liked