home *** CD-ROM | disk | FTP | other *** search
- // %PARAMETERS = "CH13LIST C:\UT2004"
- //Identifies the package
- //CH13_10LIST.uc
-
- class CH13_10LIST extends Commandlet;
- function int Main(string Args){
- // #1
- local string szTest;
- szTest = "Choo";
-
- //#3
- //Test for the value of iIt - an integer
- //You can also test for a chacter
- switch(szTest){
- case "Zoo": case "Choo":
- Log("Zoo");
- break;
- case "Who":
- Log("Who");
- break;
- default:
- Log("Boo");
- }//end switch
-
- return 0;
- }
-