...

/

Compile to Bytecode and Run

Compile to Bytecode and Run

Let’s first create a small Hello World program in Kotlin. Using your favorite text editor create a file named Hello.kt, like so:

fun main() = println("Hello World")

Don’t worry about the syntax in the code at this time; let’s keep our focus on getting the code to run. We’ll discuss the language syntax and semantics in following chapters. You may specify the parameter for the ...