Contact: aviboots(AT)netvision.net.il
41,397 questions
53,943 answers
573 users
let s = "swift" let firstCharacter = s.first! print(firstCharacter) /* run: s */
let s = "swift" let firstCharacter = s.prefix(1) print(firstCharacter) /* run: s */