Repeat a string: Difference between revisions

Content added Content deleted
(Added Wren)
(added langur language example)
Line 1,102: Line 1,102:
I don't know if there is a built-in function for this, but it is easily achieved with a For loop and Concatenate Strings.<br/>
I don't know if there is a built-in function for this, but it is easily achieved with a For loop and Concatenate Strings.<br/>
[[file:LabVIEW_Repeat_a_string.png]]
[[file:LabVIEW_Repeat_a_string.png]]

=={{header|langur}}==
This example looks like Perl, but the x operator doesn't just multiply strings in langur.
<lang langur>"ha" x 5</lang>


=={{header|Lasso}}==
=={{header|Lasso}}==