sergelaurent
Technical User
I have got the following code:
while{toto==1}
{
//instructions
}
In fact, I want to execute all the instructions in the while loop until the user click on any button of the keyboard.
I want to change to state of the variable toto from 1 to 0 when a click is perform or vice versa.
How can I do this?
while{toto==1}
{
//instructions
}
In fact, I want to execute all the instructions in the while loop until the user click on any button of the keyboard.
I want to change to state of the variable toto from 1 to 0 when a click is perform or vice versa.
How can I do this?