[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]
Single Comment
I've added switch, case, and endswitch commands. These work like switch and case in C, but not in PHP. The case statement can be used only with constant labels, because it works as a computed goto, not as a series of tests. I've modified the break command to be able to break out of a switch block. Details are in the section on control structures.