MyFirstRepo/Git/Program.cs

18 lines
329 B
C#
Raw Permalink Normal View History

2025-02-24 11:15:52 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Git
{
internal class Program
{
static void Main(string[] args)
{
2025-02-24 11:26:17 +03:00
Console.WriteLine("Привет");
2025-02-26 09:41:06 +03:00
Console.WriteLine("Ало семпай сегодня как обычно?");
2025-02-24 11:15:52 +03:00
}
}
}