\' Gambas class file
Inherits Expresion
Private numero As Float
Public Sub _new(n As Float)
numero = n
End
Public Sub interpreter(s As Float[]) As Variant[] \'indica si hay error...
Try s.Push(numero)
If Error Then
Return [False, "(operador numero) " & Error.Text]
Endif
Return [True, ""]
End