main()
fun main()
println("Hello Developers!")
// Code goes here
}
Print Statement
println("Nameste, Developers!")
print("Let me ")
print("guide you through the Kotlin Basic Cheat Sheet")
/*
Print:
Nameste, Developers!
Let me guide you through Kotlin Basic Cheat Sheet
Notes
// this is a single line comment
/*
this
note
for
many
*/
Execution Order
fun main() {
println("I will be printed First")
println("I will be printed Second")
println("I will be printed Third")
}
Next will be looking on cheat Sheet for Kotlin Data types and variables
Top comments (0)