From da3b569fbe1b7be2b54a77571f2c2f51d48244d0 Mon Sep 17 00:00:00 2001 From: Leo Date: Sun, 2 Nov 2025 13:24:41 +0100 Subject: [PATCH] Fix English translations in comments to match tests --- src/main/kotlin/TaskOne.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/TaskOne.kt b/src/main/kotlin/TaskOne.kt index 6f16de8..5e3394d 100644 --- a/src/main/kotlin/TaskOne.kt +++ b/src/main/kotlin/TaskOne.kt @@ -1,6 +1,6 @@ object TaskOne { // Beispiel: Schreibe eine Funktion, die "Hallo Welt!" auf der Konsole ausgibt und zurückliefert. - // Example: Write a function that prints "Hello World!" to the console and returns it. + // Example: Write a function that prints "Hallo Welt!" to the console and returns it. fun printHallo(): String { println("Hallo Welt!") return "Hallo Welt!" @@ -31,7 +31,7 @@ object TaskOne { } // 5. Schreibe eine Funktion, die den Namen eines Benutzers als Parameter übergeben bekommt und "Hallo, [Name]!" aus und zurückgibt. - // 5. Write a function that takes a user's name as a parameter and prints and returns "Hello, [Name]!". + // 5. Write a function that takes a user's name as a parameter and prints and returns "Hallo, [Name]!". fun printName(name: String): String { throw NotImplementedError("TODO") }