using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}
public interface IThing
public interface IThings<T> where T : IThing
List<T> L { get; set; }