Contact: aviboots(AT)netvision.net.il
41,593 questions
54,235 answers
573 users
let s = "swift" let N = 5 let repeatedstring = String(repeating: s + " ", count: N) print(repeatedstring) /* run: swift swift swift swift swift */