document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Inherits Pato
  4.  
  5. Public Sub _new()
  6.  
  7.   Dim vuela As IVolar
  8.  
  9.   vuela = New VolarPlaneando
  10.  
  11.   Super.setVolar(vuela)
  12.  
  13. End
  14.  
  15. Public Function getVolar() As String
  16.  
  17.   Return Super.getVolar()
  18.  
  19. End
');