I am new to LN coding but am a seasoned programmer is other languages. I am familiar with using case but I can only find ON CASE syntax. In the other languages they use a case statement very similar syntax SQL case statements. Is this type of Case available in LN in program scripts?
Example:
Thank you in advance.
Paul
Example:
Code:
CASE
WHEN x = 1 and y = 1
do something
break
WHEN y = 1
do something
break
OTHERWISE
do something
break
END CASE
Paul