document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Inherits VehiculodeTransporte
  4.  
  5. Public Sub crearFabricaDeVehiculos(factory As VehiculoDeTransporte)
  6.  
  7.   Dim objetoVehiculo As New Vehiculo
  8.  
  9.   objetoVehiculo = factory.crearVehiculo()
  10.   objetoVehiculo.codigoDeVehiculo()
  11.  
  12. End
');