repeated
Operator
The repeated operator creates a string of text repeated a given number of times, up to a specified length, or creates a repeated list.
Example:
put "$" repeated 12 times --> "$$$$$$$$$$$$"
put "Hello" repeated to length 12 --> "HelloHelloHe"
For a list of repeated items, use as list/as a list or list of/a list of with repeated.
Example:
put "$" repeated 6 times as a list --> ("$","$","$","$","$","$")
put a list of 7 repeated 3 times --> (7,7,7)