[][src]Module basic::__Chapter_3::STRING

STRING$(X, <Y|Y$>) Returns X copies of Y as a string.

You can specify Y as an integer or a string. Only the first character of a string is used.

PRINT STRING$(5,45)"KAPOW"STRING$(5,"-")
-----KAPOW-----