Repeat a string: Difference between revisions

Content deleted Content added
PatGarrett (talk | contribs)
PatGarrett (talk | contribs)
→‎{{header|PL/I}}: Add repeat function
Line 1,543:
 
=={{header|PL/I}}==
<lang PL/I>s = copy('ha', 5);
/* To repeat a string a fixed number of times: */
 
s = repeat('ha', 4);
 
/* or */
 
s = copy('ha', 5);
 
/* To repeat a single character a fixed number of times: */