Print("press esc 5 times to quit!")
eschits=5
While(eschits)
If(KeyHit(1))
eschits=eschits-1
Print "Esc Hit"
Wend
If eschits=0
End
When I compile this and run the program. The first line is there along with a blank prompt for the second. Any idea why it doesnt work?
eschits=5
While(eschits)
If(KeyHit(1))
eschits=eschits-1
Print "Esc Hit"
Wend
If eschits=0
End
When I compile this and run the program. The first line is there along with a blank prompt for the second. Any idea why it doesnt work?