switch – Talk
Jump to navigation
Jump to search
(Feature Request:) |
|||
Line 8: | Line 8: | ||
the ability to drop through cases something like below: | the ability to drop through cases something like below: | ||
see also http://en.wikipedia.org/wiki/Switch_statement | |||
switch( rank ) { | switch( rank ) { |
Revision as of 20:42, 19 July 2007
switch is case sensitive when comparing strings!
switch (primaryWeapon player) do {
case "m4gl": {hint "never work since primaryweapon returns M4GL"};
};
--Doolittle 06:25, 18 July 2007 (CEST)
Feature Request:
the ability to drop through cases something like below: see also http://en.wikipedia.org/wiki/Switch_statement
switch( rank ) {
case "General": case "Major": case "Colonel": { hint "An officer and a gentleman"; };
case "Sergant": case "Leutenant": { hint "NCO"; };
default: { hint "cannon fodder"; }; }