Rpt$

From BR Wiki
Revision as of 00:57, 22 May 2014 by Laura (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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)