-1 should return false?
Posted: Sat Apr 28, 2007 4:30 pm
Code: Select all
If -1
Debug "Returned true"
EndIf
http://www.purebasic.com
https://www.purebasic.fr/english/
Code: Select all
If -1
Debug "Returned true"
EndIf
Code: Select all
x=1
y=0
z=-1
If x
Debug "true"
Endif
If y
Debug "true"
Endif
If z
Debug "true"
Endif
Code: Select all
If x = anything
Debug "true"
Endif