Created
November 12, 2019 21:34
-
-
Save ssaurel/11bc01e57392c3db1d1cb1086c8db864 to your computer and use it in GitHub Desktop.
Hello, World! in Kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main(args: Array<String>) { | |
println("Hello, World!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Starting from Kotlin 1.3,
args
is optional: hello-world