document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Inherits Bebida
  4.  
  5. Public Sub _new()
  6.  
  7.   Super.setdescripcion("Espresso")
  8.  
  9. End
  10.  
  11. Public Function cost() As Single
  12.  
  13.   Return 1.99
  14.  
  15. End
');