document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Inherits Unidad
  4.  
  5. Public Sub Soldado(nombre As String)
  6.  
  7.   Super.setnombre(nombre)
  8.  
  9. End
  10.  
  11. Public Function Descripcion() As String
  12.  
  13.   Return "Soldado:" & Super.DevuelveNombre() & "<br>"
  14.  
  15. End
');