Quote:
Originally Posted by Trevally.
I have been getting the feel for the tutorial commands but I have a question,
" If x != 0 then a 'Wait' command will be issued with a time of x."
Im assuming this is just as it sounds - enter any number for seconds to wait in the para x and thus removing the need for the wait command.
But what does the "!" stand for?
|
sorry, I guess that would be confusing to those who aren't familiar with programming in C++, C#, or Python. The expression 'x != 0' translates to:
if x does not equal 0
This does indeed remove the need for the wait command