Multiple statements

Report a typo

Change the program so that it prints the words of the phrase "Learn Kotlin" on separate lines (make a program with multiple statements).

Sample Input 1:

Sample Output 1:

Learn
Kotlin
Write a program in Kotlin
fun main() {
println("Learn Kotlin")
}
___

Create a free account to access the full topic