View Single Post
rlane187
Junior Member
 
Join Date: Mar 2015
Posts: 28

Old October 16th, 2017, 03:25 AM
Suppose I have a numeric variable "delta" and I want to test to see if it is within a given range:
Code:
if (delta > 3 AND delta <=6) then
    do stuff
    endif
What should I be using in HL instead of AND?

Suppose I want to know if delta is one of two values:
Code:
if (delta = 3 OR delta = 6) then
    do stuff
    endif
What should I be using in HL instead of OR?
rlane187 is offline   #4 Reply With Quote