Contact: aviboots(AT)netvision.net.il
39,890 questions
51,821 answers
573 users
import Foundation let s = "swift python c++ java rust" for word in s.split(separator: " ") { print(word[word.startIndex]) } /* run: s p c j r */