My OCD makes me add \"break\" when writing case statements, even if they will not be executed. Consider the following code example:
switch(option) { cas
I'm told that in C, C++, java and C#, if you don't put those "breaks" the program code flow will fall into the other "cases" and will execute the instructions inside them, not matter if the variable doesn't have the values assignned to the "cases".