1 2 3 4 5 6 7 8 9 10 11 12 13 14
using System; namespace Third { public static class Other { public static void Haiku() { Console.WriteLine("Bugs in the code"); Console.WriteLine("Winter compiles silently"); Console.WriteLine("Spring runs with no bugs"); } } }