Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Pure functions and side effects

Pure functions and side effects

Вторая неделя - Хороший программист

Ivan Nemytchenko

October 06, 2019
Tweet

More Decks by Ivan Nemytchenko

Other Decks in Programming

Transcript

  1. def how_fat_identify(bmi) case bmi when 40.. then "Очень резкое ожирение"

    when 35...40 then "Ожирение резкое" when 30...35 then "Ожирение" when 25...30 then "Избыточная масса тела (предожирение)" when 18.5...25 then "Норма" when 16.01...18.5 then "Недостаточная (дефицит) масса тела" else "Выраженный дефицит массы тела" end end