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