using System;
public class Program
{
public static void Main()
var test = new Test(0);
Console.WriteLine($"Hello World: {test.Next()}");
}
public class Test(int field)
public int Next()
return field + 1;