.Net_Test/C#/C# Basic Udemy Seen/FirstProgram/Proměnne/Program.cs
2023-09-01 17:46:12 +02:00

17 lines
413 B
C#

namespace Proměnne
{
internal class Program
{
static void Main(string[] args)
{
string helloWorld;
helloWorld = "Hello, World!"; // řetězcová proměnná
Console.WriteLine(helloWorld);
helloWorld = "How are you?"; // řetězcová proměnná
Console.WriteLine(helloWorld);
Console.ReadLine();
}
}
}