Hello.

I'm doing a task, where variable presents certain data (changes every second). I have to capture a moment, when it starts to decrease.

My code is here:

Code:
COMPARER:
IF OLD>NEW THEN GOTO OTHER TASK
PAUSE 1
OLD=NEW
GOTO COMPARER
But isn't there some kind of statement, to make this shorter?