document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ' Gambas class file
  2.  
  3. Inherits CondimentoDecorador
  4.  
  5. Private beb As Bebida
  6.  
  7. Public Sub _new(b As Bebida)
  8.  
  9. beb = b
  10.  
  11. End
  12.  
  13. Public Sub getDescripcion() As String
  14.  
  15. Return beb.getDescripcion() & ", Leche Condensada"
  16.  
  17. End
  18.  
  19. Public Function cost() As Single
  20.  
  21. Return 0.50 + beb.cost()
  22.  
  23. End
');