using System;
public class Program
{
public static void Main()
Action x = () => { var y="hello"; Console.WriteLine(y); };
x();
}