Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
15
Task/Time-a-function/PL-I/time-a-function.pli
Normal file
15
Task/Time-a-function/PL-I/time-a-function.pli
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
declare (start_time, finish_time) float (18);
|
||||
|
||||
start_time = secs();
|
||||
|
||||
do i = 1 to 10000000;
|
||||
/* something to be repeated goes here. */
|
||||
end;
|
||||
finish_time = secs();
|
||||
|
||||
put skip edit ('elapsed time=', finish_time - start_time, ' seconds')
|
||||
(A, F(10,3), A);
|
||||
/* gives the result to thousandths of a second. */
|
||||
|
||||
/* Note: using the SECS function takes into account the clock */
|
||||
/* going past midnight. */
|
||||
Loading…
Add table
Add a link
Reference in a new issue