Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Basically yes. && = "and" and || = "or" in other languages outside of HL (PHP is one off the top of my head). Usually when & is used as contraction function for strings the language uses && to represent a logical IF "and".What do && and || mean? You'll never see a doubled character as a operator in HL's scripting language. Do you just mean & and |, and you're pulling in terms from another language?
if (delta > 3 AND delta <=6) then
do stuff
endif
if (delta = 3 OR delta = 6) then
do stuff
endif
if (delta > 3) then
if (delta <=6) then
~ do stuff
endif
endif
if (delta = 3) then
~ do stuff
endif
if (delta =6) then
~ do stuff
endif
For AND
Code:if (delta > 3) then if (delta <=6) then ~ do stuff endif endif
For OR (can result in duplication if doing "do stuff" twice has different effects than running it once)
Code:if (delta = 3) then ~ do stuff endif if (delta =6) then ~ do stuff endif
Alternately, if you can turn it into a tag check (including a tag value check), things get more flexible.