Basics of Kotlin for Android Development
Hey So we will start with Iconic Hello world !
Hello World
fun main(){
println("Hello world")
}
Out:
Hello world
So is as simple as that, Now println() is used for next line.
print("Hello")
//next print will continue prining withought next line
...
saurabhjadhavblogs.com4 min read