13 lines
214 B
Text
13 lines
214 B
Text
print <<EOT
|
|
Implicit double-quoted (interpolates):
|
|
a = #{a}
|
|
EOT
|
|
|
|
print <<"EOD"
|
|
Explicit double-quoted with interpolation:
|
|
a = #{a}
|
|
EOD
|
|
|
|
print <<'NON_INTERPOLATING'
|
|
This will not interpolate: #{a}
|
|
NON_INTERPOLATING
|