Introduces a definition statement which will be processed only once.
Syntax:
1 |
ONCE |
Example:
1 2 3 4 5 6 7 8 9 |
ONCE myfirstlowest = lowest[10](low) IF(low < myfirstlowest OR low < recentlow) THEN recentlow = low ELSE recentlow = recentlow ENDIF RETURN recentlow |