dem20241130/ConsoleApp7/Program.cs
2024-11-30 12:40:43 +04:00

15 lines
250 B
C#

namespace ConsoleApp7
{
public class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
public static int Test()
{
return -1;
}
}
}