Hello, Kotlin

Report a typo

Add comments to the code so that the program outputs "Hello, Kotlin".

Note, print displays a string without a new line.

Write a program in Kotlin
fun main() {
print("Hello, ")
print("world")
print(" and ")
print("Kotlin")
}
___

Create a free account to access the full topic