STRING

s = STRING ( count, {str | chr} )

Creates a new string, which repeats the string str count times. If instead of a string a number chr is given, chr will be interpreted as an ASCII-code and the corresponding character will be repeated count times.

Example

print string(4, "A")        ' Output: AAAA
print string(4, "AB")       ' Output: ABABABAB
print string(4, 65)         ' Output: AAAA
String
If there is insufficient information on this page and you wish learn more about STRING, please send an email to smallbasic@gmail.com. You can help to improve information about STRING by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.