more fun with strings, alternate quoting, multiline and all that

This commit is contained in:
Dan Buch 2011-01-03 13:52:24 -05:00
parent 1416451644
commit a333293919

View File

@ -1,3 +1,19 @@
print "Enter name: " print "Enter name: "
name = gets.chomp name = gets.chomp
puts "Your name is #{name}" puts "Your name is #{name}"
adjective = "dusty"
puts %q{These runes are "#{adjective}," wouldn't you say?}
puts %Q{These runes are "#{adjective}," wouldn't you say?}
puts %Q{Math isn't exactly my "strong suit," what with 2 + 1 being #{2 + 2}}
puts %Q{
Perhaps a multiline alternate quoting is of your liking, #{name}?
One in which 'single' and "double" quotes are both safe without
#{adjective} quoting? Smashing!
}