Repeat a string: Difference between revisions

no edit summary
No edit summary
Line 523:
Q</lang>
 
=={{header|NetRexx}}==
NetRexx has built in functions to manipulate strings. The most appropriate for this task is the <code>'''copies()'''</code> function:
<lang NetRexx>/* NetRexx */
 
ha5 = 'ha'.copies(5)
</lang>
=={{header|Objeck}}==
<lang objeck>bundle Default {
Anonymous user