From 7c9d55e0aa5f08772bd16a5575bfafaca1d27aa8 Mon Sep 17 00:00:00 2001 From: Michal Hahi Date: Wed, 10 Sep 2025 10:36:16 +0200 Subject: [PATCH 1/2] upravil som z Hello World ! na Hello AppsLab --- src/AppsLab-001-StartHere/Greetings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppsLab-001-StartHere/Greetings.cs b/src/AppsLab-001-StartHere/Greetings.cs index fbe10953..f02fdb12 100644 --- a/src/AppsLab-001-StartHere/Greetings.cs +++ b/src/AppsLab-001-StartHere/Greetings.cs @@ -11,6 +11,6 @@ public class Greetings /// A string containing the greeting message. public string Hello() { - return "Hello World!"; + return "Hello AppsLab!"; } } From f5dc5a0cce5b98d249108ea2b2cfa944ea5a5d75 Mon Sep 17 00:00:00 2001 From: Michal Hahi Date: Wed, 10 Sep 2025 11:42:09 +0200 Subject: [PATCH 2/2] napise meno a vek --- src/AppsLab-002-ConsoleWriteLine/Program.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/AppsLab-002-ConsoleWriteLine/Program.cs b/src/AppsLab-002-ConsoleWriteLine/Program.cs index 837131c2..cc8c4746 100644 --- a/src/AppsLab-002-ConsoleWriteLine/Program.cs +++ b/src/AppsLab-002-ConsoleWriteLine/Program.cs @@ -1 +1,10 @@ -Console.WriteLine("Hello, World!"); \ No newline at end of file +string name = "Michal Žiačik"; +Console.WriteLine(name); +// Jednoriadkova poznámka +/* viac +riadkova +poznamka +*/ + +int age = 15; +Console.WriteLine(age); \ No newline at end of file