Skip to content

Instantly share code, notes, and snippets.

@TheNaoX
Created November 17, 2015 14:50
Show Gist options
  • Save TheNaoX/bc113b6fa55882abad2a to your computer and use it in GitHub Desktop.
Save TheNaoX/bc113b6fa55882abad2a to your computer and use it in GitHub Desktop.
BMI example
weight = 85 # Kilograms
height = 1.77 # Meters
bmi = BodyMassIndex.new(weight, height)
bmi.calculate_index # 27.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment