Skip to content

tsaeki/kotlin_tutorials

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

kotlin tutorials

https://kotlinlang.org/docs/tutorials/command-line.html

Install kotlin compiler

$ sudo snap install --classic kotlin

Run

$ vim hello.kt

fun main(args: Array<String>) {
        println("Hello, World!")
}

$ kotlinc hello.kt -include-runtime -d hello.jar 
$ java -jar hello.jar
Hello, World!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages