document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Private texto As String
  4.  
  5. Public Sub _new(t As String)
  6.  
  7.   texto = t
  8.  
  9. End
  10.  
  11. Public Function getTexto() As String
  12.  
  13.   Return texto
  14.  
  15.  
  16. End
  17.  
  18. Public Sub setTexto(value As String)
  19.  
  20.   texto = value
  21.  
  22. End
');