using System;
public class Program
{
public static void Main()
var i = ((Func<int>) (() => { return 3; }))();
Console.WriteLine("i = {0}", i);
}