box-o-sand/oldstuff/lrthw-remnants/ex11.rb
2015-06-22 13:15:42 -05:00

9 lines
209 B
Ruby

print "How old are you? "
age = gets.chomp
print "How tall are you? "
height = gets.chomp
print "Howmuch do you weigh? "
weight = gets.chomp
puts "So, you're #{age} old, #{height} tall, and #{weight} heavy."