Repeat a string: Difference between revisions

Content added Content deleted
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
(Add Ecstasy example)
Line 849: Line 849:
RepeatString('ha',3);
RepeatString('ha',3);
RepeatString('Who',2);</syntaxhighlight>
RepeatString('Who',2);</syntaxhighlight>

=={{header|Ecstasy}}==
<syntaxhighlight lang="java">
String funny = "ha" * 5;
String stars = '*' * 80;
</syntaxhighlight>


=={{header|Egison}}==
=={{header|Egison}}==