Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 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 */