static void Main(string[] args) { (Printer())(42); } static Action Printer() { return (T t) => { Console.WriteLine(t); }; }