From aeb577768587984950a1cb5d8b9492829cea0d7d Mon Sep 17 00:00:00 2001 From: Maikel Chandika Date: Sat, 12 Oct 2019 23:46:18 +0700 Subject: [PATCH] Add Kotlin language --- kotlin/README.md | 4 ++++ kotlin/main.kt | 1 + 2 files changed, 5 insertions(+) create mode 100644 kotlin/README.md create mode 100644 kotlin/main.kt diff --git a/kotlin/README.md b/kotlin/README.md new file mode 100644 index 0000000..8d2332c --- /dev/null +++ b/kotlin/README.md @@ -0,0 +1,4 @@ +# Hello world! in Kotlin Language! + +Here you can run it: [https://play.kotlinlang.org](https://play.kotlinlang.org). +Paste it in the editor and hit execute (play) button. You will get output on the bottom side. diff --git a/kotlin/main.kt b/kotlin/main.kt new file mode 100644 index 0000000..b583478 --- /dev/null +++ b/kotlin/main.kt @@ -0,0 +1 @@ +fun main() = println("Hello World")