String interpolation: Difference between revisions

Content deleted Content added
i solve syntax error
DarthKitty (talk | contribs)
Examples: remove redundant example—Perl and PHP have dedicated sections below
Line 27:
 
== Examples ==
The following [[Perl]] code works identically in [[PHP]]:
<syntaxhighlight lang="perl">
$name = "Alice";
print "${name} said Hello World to the crowd of people.";
</syntaxhighlight>
produces the output: <code>Alice said Hello World to the crowd of people.</code>
 
=== ABAP ===
{{Main|ABAP}}