From 487fbfcf10e8314d08191b2eb6f994fc3cba6ac1 Mon Sep 17 00:00:00 2001 From: amineelhajami Date: Wed, 4 Jun 2025 12:43:56 +0200 Subject: [PATCH] Initial commit --- lotto.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lotto.cs diff --git a/lotto.cs b/lotto.cs new file mode 100644 index 0000000..5d81724 --- /dev/null +++ b/lotto.cs @@ -0,0 +1,13 @@ +using System; + +namespace ProjektGlueckspiel +{ + class Lotto + { + static void Main(string[] args) + { + Console.WriteLine("Willkommen zum Lotto-Spiel!"); + // Hier können Sie Ihre Lotto-Logik implementieren. + } + } +} \ No newline at end of file