using System;
public class Program
{
public static void Main()
string txt = "hej";
int i = 21;
Console.WriteLine("txt innehåller: " + txt);
txt = "min nya text";
Console.WriteLine("txt innehåller nu istället: " + txt);
txt = Console.ReadLine();
Console.WriteLine("txt innehåller nu det du skrev i consolen: " + txt);
}