// TIL this works! using System; class Test { public static void Main() { Console.WriteLine(TheNumber()); } static int TheNumber() => 42; }