home *** CD-ROM | disk | FTP | other *** search
- Program EX_0201;
- {Listing 1P - see documentation in TUTOR.SSS}
-
- uses SSS;
- { For Pascal other than Turbo/Quick erase above line }
-
- { For MS Pascal $include:'SSSP1.H' }
-
- var
- pt : real;
-
- { For MS Pascal $include:'SSSP2.H' }
-
- begin
- pt := EX(0.5);
- while pt <= 10 do
- begin
- writeln('A new ship enters the port at time ',
- pt:7:2);
- pt := pt + EX(0.5);
- end;
- end.