Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.WriteLine("guy".makeroyal());
            Console.WriteLine("noy is very moist after an exobarent playdate with guy, so yes she was very weeeeet".censorship());
            Console.WriteLine(3.9.round());


            kid k = new kid {
                name = "ruven"
            };
            father     f = new father();
            mother     m = new mother();
            councellor c = new councellor();
            principal  p = new principal();

            k.seekidfight += f.disaplinkid;
            k.seekidfight += m.disapointed;
            k.seekidfight += c.badatjob;
            k.iseethekidfighting(p.punishment);
            k.kidfighting();
        }
Ejemplo n.º 2
0
 public void punishment(kid son)
 {
     Console.WriteLine(son.name + " is being suspended");
 }
Ejemplo n.º 3
0
 public void disapointed(kid son)
 {
     Console.WriteLine("im creing becous of " + son.name);
 }
Ejemplo n.º 4
0
 public void badatjob(kid son)
 {
     Console.WriteLine("im trabled by " + son.name);
 }
Ejemplo n.º 5
0
 public void disaplinkid(kid son)
 {
     Console.WriteLine(son.name + " is being spanked");
 }