None. |
This command ends the SELECT structure. If you are using DEFAULT commands, this is the ending point of that command set's execution. See SELECT, CASE, and DEFAULT for more information. |
; SELECT/CASE/DEFAULT/END SELECT Example ; Assign a random number 1-10 mission=Rnd(1,10) ; Start the selection process based on the value of 'mission' variable Select mission ; Is mission = 1? Case 1 Print "Your mission is to get the plutonium and get out alive!" ; Is mission = 2? Case 2 Print "Your mission is to destroy all enemies!" ; Is mission = 3? Case 3 Print "Your mission is to steal the enemy building plans!" ; What do do if none of the cases match the value of mission Default Print "Missions 4-10 are not available yet!" ; End the selection process End Select |