RosettaCodeData/Task/Literals-String/Sidef/literals-string-3.sidef

14 lines
214 B
Plaintext

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