// Make a new lambda function Func<string, string> greet = (name) => $"Hello, {name}!"; // Call it Console.WriteLine(greet("John"));