in PB there is a STRING$() function which
Return a string consisting of multiple copies of the specified character.
Syntax
s$ = STRING$(Count&, Character%)
example
A$ = STRING$(8, "0") ' Results A$ = "00000000"
Is there an equivalent function in O2 ?