From 70bcc49e7ec3976b5e3c2f80d57ca2ee0be6736e Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sun, 19 Feb 2012 13:52:42 -0500 Subject: [PATCH] file for ex11 --- ex11.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ex11.rb diff --git a/ex11.rb b/ex11.rb new file mode 100644 index 0000000..56c1b89 --- /dev/null +++ b/ex11.rb @@ -0,0 +1,8 @@ +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."