You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI, I had mentioned this in the past and @dmsc has replied:
No, I did not include a "SELECT CASE" statement, because is not that easy to implement: the result of the select expression needs to be stored in some place, and then compared with different values in each case. And from a speed perspective, a IF...ELIF...ELIF...ENDIF sequence using a variable should be faster.
Perhaps in the future, if enough people desire, a pre-processer could convert SELECT CASE to IF/ELIF/ENDIF statements before sending it to the compiler:
IF A=1
PRINT "A"
ELIF A>=2 AND A<=4
PRINT "B-D"
ELSE
PRINT "OTHER"
ENDIF
comparing potential minified differences:
' SELECT CASE
S.A:C.1:?"A":C.2T.4:?"B-D":D.:?"OTHER":E.
' IF/ELIF
I.A=1:?"A":ELI.A>1A.A<5:?"B-D":EL.:?"OTHER":E.
Would be nice to have the following:
The text was updated successfully, but these errors were encountered: