puts, print, and interpolation

This commit is contained in:
Dan Buch 2011-01-03 13:45:11 -05:00
parent b50968950e
commit 1416451644

View File

@ -0,0 +1,3 @@
print "Enter name: "
name = gets.chomp
puts "Your name is #{name}"