csharptest/KonsooliDemo/Program.cs

18 lines
315 B
C#
Raw Normal View History

2016-08-29 14:14:13 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KonsooliDemo
{
class Program
{
static void Main(string[] args)
{
2016-08-29 14:17:14 +03:00
Console.WriteLine("Tere Maailm!");
Console.ReadKey();
2016-08-29 14:14:13 +03:00
}
}
}