8 lines
172 B
Text
8 lines
172 B
Text
|
|
Function Repeat(s As String, count As Integer) As String
|
||
|
|
Dim output As String
|
||
|
|
For i As Integer = 0 To count
|
||
|
|
output = output + s
|
||
|
|
Next
|
||
|
|
Return output
|
||
|
|
End Function
|