First Program

First Program

Hello World Program

  • Main is the entry point.
  • JVM looks for this method while running your program.
fun main(args : Array<String>){ println("Hello World!) print(10 + 20) print(false) }
 
notion image