document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Private descripcion As String
  4.  
  5. Public Function setDescripcion(d As String)
  6.  
  7.   descripcion = d
  8.  
  9. End
  10.  
  11. Public Function getDescripcion() As String
  12.  
  13.   Return descripcion
  14.  
  15. End
  16.  
  17. Public Function cost() As Single
  18.  
  19.   Return
  20.  
  21. End
');