more fun with strings, alternate quoting, multiline and all that
This commit is contained in:
parent
1416451644
commit
a333293919
@ -1,3 +1,19 @@
|
||||
print "Enter name: "
|
||||
name = gets.chomp
|
||||
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!
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user