RosettaCodeData/Task/Literals-String/Ruby/literals-string-3.rb

11 lines
230 B
Ruby
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
print <<HERE
With an unquoted delimiter, this interpolates:
a = #{a}
HERE
print <<-INDENTED
This delimiter can have whitespace before it
INDENTED
print <<'NON_INTERPOLATING'
This will not interpolate: #{a}
NON_INTERPOLATING