Skip to content

Instantly share code, notes, and snippets.

@davidcelis
Created October 31, 2012 23:23
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 davidcelis/5c8849ab27f515c43002 to your computer and use it in GitHub Desktop.
Save davidcelis/5c8849ab27f515c43002 to your computer and use it in GitHub Desktop.
Exercise 5 from Learn Ruby the Hard Way
my_name = 'Zed A Shaw'
my_age = 35 # not a lie
my_height = 74 # inches
my_weight = 180 # lbs
my_eyes = 'Blue'
my_teeth = 'White'
my_hair = 'Brown'
puts "Let's talk about %s." % my_name
puts "He's %d inches tall." % my_height
puts "He's %d pounds heavy." % my_weight
puts "Actually that's not too heavy."
puts "He's got %s eyes and %s hair." % [my_eyes, my_hair]
puts "His teeth are usually %s depending on the coffee." % my_teeth
puts "If I add %d, %d, and %d I get %d." % [ my_age, my_height, my_weight, my_age + my_height + my_weight]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment