I am curious to see any alternative(s) to the regular if statements such as
if(x)
do a;
if(y)
do b;
if(z)
do c;
so as you see all if statements are seperate and no else condition. Please notice that X Y Z are totally seperate conditions so switch wouldn't fit.