Contact: aviboots(AT)netvision.net.il
41,606 questions
54,268 answers
573 users
fun main() { val sentence = "Kotlin is a programming language that makes coding concise" val words = sentence.split(" ") val secondWord = if (words.size > 1) words[1] else "No second word" println(secondWord) } /* run: is */