(CLOCK)

Returns the number of ticks since the start of PC Scheme. A tick as about 55 milliseconds ( 1/CLOCK-TICK). The purpose of CLOCK is to measure time deltas. The time in seconds could be determined with:
(let ((start (clock)))
  (do-my computation)
  (/ (- (clock) start) CLOCK-TICK))