15 lines
250 B
C#
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;
|
|
}
|
|
}
|
|
}
|