How would you be able to define behavior by comparing to a variable
that ranges over a large set of values? How do you limit what values
the variable can have? It wouldnt even make sense to compare to a
variable, you are defining the behavior in the separate statements in
a switch based on a specific state, it amounts to using an if
statement... if myVar=1, do this, if myVar=2, do this, and so on. If
you need to use a range of values, you would need to use an explicit
if: if myVar > 0 && myVar < 100, do this, if myVar > 100 & If I were
to divulge it, it would overturn the world."