What's wrong with having continue in a switch statement?Don't normal languages, by default, ask you to put breaks in because this is useful behavior?else if chains are right there if you don't like switches being switches
switch is gaypattern matching is also gayif-else is also gayjust use goto
this is why i dont use game engines. no matter what you will someday find yourself at the mercy of a completely incompetent retard. i would rather that be myself, at least.
>>107078940If-else statements look too messy on page, switch is so much cleaner to read.
>>107078940>switch statementsI never see this outside of people who are just learning programming.>>107078983This but the complete opposite.
stop using github
>>107078940>else if chains are right there if you don't like switches being switchesSwitch can be more efficient than a long nested chain of if-else.