static void Main(string[] args)
Console.WriteLine("Hello World!");
public static void DoSomeStuff(int x)
5 => Console.WriteLine("x is 5!"),
10 => Console.WriteLine("x is 10!"),
_ => Console.WriteLine("Just printing something, since apparently I can't have an empty catch-all / discard arm.")
public static void DoThings()
Console.WriteLine("DoThings() called");