You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
251 B
Plaintext

// to install kotlin:
// curl -s https://get.sdkman.io | bash
// sdk install kotlin
// to compile:
// kotlinc hello.kt -include-runtime -d hello.jar
// to run:
// java -jar hello.jar
fun main(args: Array<String>){
println("Hello World")
}