UE1 - UT HOw does Frand work?

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

eblade

New Member
Jan 29, 2006
113
0
0
psuedo example:

if(condition is true) {
do stuff;
} else {
do other stuff;
}

anything in the "else" bracket is done only if the tested condition is not true.

and you can string together as many if .. else if .. as you want.

did PHP ever allow ranged switch? I know I've known some language that did it..