Code: Select all
If -1
Debug "Returned true"
EndIf
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
Code: Select all
onErrorGoto(?Fred)