home *** CD-ROM | disk | FTP | other *** search
- // %PARAMETERS = "CH13LIST C:\UT2004"
- //Identifies the package
- //CH13_03LIST.uc
-
- class CH13_03LIST extends Commandlet;
- function int Main(string Args){
- local int iResult;
- Log(Chr(10) $ " CH13_03LIST" $ Chr(10));
-
- //Force the additions to be performed
- iResult = 6 + (5 + 8) * (9 + 4) * 2;
- Log(" A: " $ iResult);
-
- //Force additions again
- iResult = (6 + 5 + 8) * 9 + (4 * 2);
- Log(" B: " $ iResult) ;
-
- //forced multiplications
- iResult = (6 + 5) + (8 * 9) + (4 * 2);
- Log(" C: " $ iResult);
- return 0;
- }
-
-
-
-