using System;
public class Program
{
int zahl = 0;
double kommen = 0.1234; // oder Float
char buchstaben = 'a';
static string text = "Hello Text";
bool wahr = false;
public static void Main()
Console.WriteLine(text);
text += " lol";
}