String interpolation: Difference between revisions

Content deleted Content added
Line 270:
const Bananas := 3
Println ("I have `(Apples) apples.\n")
Println ("I have `(Apples+Bananas) fruitfruits.\n")
</syntaxhighlight>
The output will be:
<syntaxhighlight lang="output">
I have 4 apples.
I have 7 fruitfruits.
</syntaxhighlight>
 
=== Perl ===