using System.Collections.Generic;
static string? calc1() => null;
static string? calc2() => "hi";
static string? calc3() => null;
static string? calc4() => "everyone";
var list = new List<string>();
list.ForEach(Console.WriteLine);
static void let<T>(this T s, Action<T> a) => a(s);