document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Private hnombre As String
  4.  
  5. Public Sub setnombre(value As String)
  6.  
  7.   hnombre = value
  8.  
  9. End
  10.  
  11. Public Sub getnombre() As String
  12.  
  13.   Return hnombre
  14.  
  15. End
');