Skip to content

Instantly share code, notes, and snippets.

@slimane
Created September 6, 2013 06:11
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 slimane/6460139 to your computer and use it in GitHub Desktop.
Save slimane/6460139 to your computer and use it in GitHub Desktop.
common lispでのBMI計算コード。私新しい言語勉強したらとりあえずこれ書くんです。
(defun calc_bmi (height weight)
(float
(flet (
(twice (number)
(* number number))
(divid-100(number)
(/ number 100))
)
(/
weight
(twice
(divid-100 height))
)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment