String

Strings
Aptilis 1

String(Count, Pattern)

String creates a string by repeating a pattern for the number of times specified.

Return Value:
A string composed of the repetition of a substring.

Example:

p = "bla" $
print(string(3, p$)$)
Result:
blablabla