Example #1
0
        static void Main(string[] args)
        {
            Print p = new PrintBanner("nimasilegege");

            p.printWeak();
            p.printStrong();
        }
Example #2
0
        static void Main(string[] args)
        {
            var p = new PrintBanner("Hello");

            p.PrintWeak();
            p.PrintStrong();
        }
Example #3
0
 public static void Main()
 {
     Print p = new PrintBanner( "Hello" );
     p.PrintWeak();
     p.PrintStrong();
 }