hi
something is changed lately (gambas2-1916)?

' Gambas module file

PUBLIC SUB Main()

DIM a AS Integer = 1
DIM b AS Integer = 2
DIM r AS Integer

r = TRUE
PRINT NOT a, r
r = a > b
PRINT r
r = NOT a > b
PRINT r
r = NOT (a > b)
PRINT r

END

seems the not operator comes before the > evaluation...
is there a reference in the docs?

thanks

------------------------------------------------------------------------------
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to