summaryrefslogtreecommitdiffstats
path: root/third/Other.cs
blob: fbad5b62afd535724d170d986384a3612bec20d4 (plain) (blame)
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");
        }
    }
}