Skip to content

Latest commit

 

History

History
86 lines (74 loc) · 2.56 KB

File metadata and controls

86 lines (74 loc) · 2.56 KB

Function: RepeatString

Create a string that contains a specified number of repetitions of the specified string.

Method Signature

RepeatString(string=[string], count=[integer])

Arguments

Argument Type Required Description Default
string string true The string to repeat.
count integer true The number of times to repeat the string.

Examples

Related