17 lines
413 B
C#
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|