packages feed

language-Modula2-0.1: examples/Modula-2_Libraries/andrea-m2/lib/multiscope/timer.def

DEFINITION MODULE Timer;

(* get time stats *)
(* J. Andrea, May.18/92 - dos version ? *)

EXPORT QUALIFIED StartTimer, ShowTimer;

PROCEDURE StartTimer;
(* start up the timer *)

PROCEDURE StopTimer;
(* stp the timer *)

PROCEDURE ShowTimer;
(* get the current value of the timer, since the last show *)

END Timer.