From fd971fde24cc92559427f0623b1b0ae6a22c6865 Mon Sep 17 00:00:00 2001 From: p-ja Date: Mon, 6 Jan 2025 18:58:01 +0100 Subject: [PATCH] Update README.md with Hello World in Kotlin --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index d72c82a31..601ead9e2 100644 --- a/README.md +++ b/README.md @@ -14,3 +14,11 @@ The **Pull requests** tab contains proposals to make some changes in the files l You can create an *Issue* or make a *Pull request (PR)* to contribute to the project. If you want to propose some changes to this repo, you may *fork* it, modify the content, and create *PR*. A *fork* is just a copy that allows you to change the content without affection the original project. + +## Hello world in Kotlin + +```kotlin +fun main() { + println("Hello world") +} +```