Oxygen Basic
Programming => Problems & Solutions => Topic started by: jcfuller on February 25, 2018, 01:26:52 PM
-
Charles,
What is the := operator?
Help file does not have a listing.
James
-
:= is an assignment operator which can be used inside a conditional expression, disinct from '=' as an equality operator.
Typical use:
while bRet := GetMessage @wm, 0, 0, 0
if bRet == -1 then
' show an error message
...