13 lines
262 B
C#
13 lines
262 B
C#
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.
|
|
}
|
|
}
|
|
} |