Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Bus      bus     = new Bus("Bogdan");
            Freight  freight = new Freight("VW Transporter");
            SuperCar super   = new SuperCar("Ferrari");

            super.Go();
            bus.Go();
            freight.Go();
        }