Repeat a string: Difference between revisions

imported>Arakov
 
(One intermediate revision by one other user not shown)
Line 1,616:
 
=={{header|langur}}==
<syntaxhighlight lang="langur">"ha" x* 5</syntaxhighlight>
This example looks like Perl, but the x operator doesn't just multiply strings in langur.
<syntaxhighlight lang="langur">"ha" x 5</syntaxhighlight>
 
=={{header|Lasso}}==
Line 3,081 ⟶ 3,080:
 
=={{header|Wren}}==
<syntaxhighlight lang="ecmascriptwren">System.print("ha" * 5)</syntaxhighlight>
 
{{out}}
890

edits