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(); }
public void punishment(kid son) { Console.WriteLine(son.name + " is being suspended"); }
public void disapointed(kid son) { Console.WriteLine("im creing becous of " + son.name); }
public void badatjob(kid son) { Console.WriteLine("im trabled by " + son.name); }
public void disaplinkid(kid son) { Console.WriteLine(son.name + " is being spanked"); }