My_First_Repo/Program.cs

27 lines
522 B
C#
Raw Normal View History

2025-02-24 12:56:26 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleForGit
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("HelloWorld");
2025-02-24 13:43:43 +03:00
Console.WriteLine("HelloWorld");
Console.WriteLine("HelloWorld");
Console.WriteLine("HelloWorld");
Console.WriteLine("HelloWorld");
Console.WriteLine("HelloWorld");
2025-02-24 12:56:26 +03:00
}
}
}