document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. \' Gambas class file
  2.  
  3. Inherits Expresion
  4. Private numero As Float
  5.  
  6. Public Sub _new(n As Float)
  7.  
  8.   numero = n
  9.  
  10. End
  11.  
  12. Public Sub interpreter(s As Float[]) As Variant[] \'indica si hay error...
  13.  
  14.   Try s.Push(numero)
  15.   If Error Then
  16.     Return [False, "(operador numero) " & Error.Text]
  17.    
  18.   Endif
  19.  
  20.   Return [True, ""]
  21.  
  22. End
');