Name: Suddenly, Bananas 2013-02-10 14:26
Do any languages allow you to shorten an if statement like this:
to something like this:
[code]if (test == a || b || c || d)
?
if (test == a || test == b || test == c || test == d)to something like this:
[code]if (test == a || b || c || d)
?