From 08e7f995ef2e74b593486ee29d2224ca9f11b01f Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 02:42:26 +0000 Subject: [PATCH] [Sync Iteration] kotlin/hello-world/1 --- solutions/kotlin/hello-world/1/src/main/kotlin/HelloWorld.kt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 solutions/kotlin/hello-world/1/src/main/kotlin/HelloWorld.kt diff --git a/solutions/kotlin/hello-world/1/src/main/kotlin/HelloWorld.kt b/solutions/kotlin/hello-world/1/src/main/kotlin/HelloWorld.kt new file mode 100644 index 0000000..8d84bc6 --- /dev/null +++ b/solutions/kotlin/hello-world/1/src/main/kotlin/HelloWorld.kt @@ -0,0 +1,3 @@ +fun hello(): String { + return "Hello, World!" +}