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

14 lines
214 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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