From a9902c997436f46f5172b67ace3d459ca4d56c3c Mon Sep 17 00:00:00 2001 From: noemi3 Date: Fri, 1 Oct 2021 12:50:23 +0200 Subject: [PATCH] add hello word in kotlin --- kotlin.kt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 kotlin.kt diff --git a/kotlin.kt b/kotlin.kt new file mode 100644 index 0000000..1e5b0fe --- /dev/null +++ b/kotlin.kt @@ -0,0 +1,5 @@ +// Hello world in Kotlin + +fun main(args : Array) { + println("Hello, world!") +}