Kotlin - Basics and JVM Runtime
Identify the error in this Kotlin code snippet:
print("Hello")
println "World"print("Hello")
println "World"print("Hello") is correct with parentheses and quotes.println "World" is missing parentheses around the argument, which is required in Kotlin.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions