Rpt$
RPT$(<string>,<repeat>)
The Rpt$ internal function returns the string, repeated <repeat> times.
Comments and Examples
Line 10 will print a row of stars (asterisks) on the printer that is 132 columns long.
00010 PRINT #255: RPT$("*",132)
RPT$(<string>,<repeat>)
The Rpt$ internal function returns the string, repeated <repeat> times.
Line 10 will print a row of stars (asterisks) on the printer that is 132 columns long.
00010 PRINT #255: RPT$("*",132)