Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
let s = "swift" let N = 5 let repeatedstring = String(repeating: s + " ", count: N) print(repeatedstring) /* run: swift swift swift swift swift */