sleep

Synopsis

(sleep seconds)

Parameters

  • seconds

Description

This procedure calls sleep() and suspends execution of the calling thread (the intereter) until either seconds seconds have elapsed or a signal is delivered to the interpreter.

Side Effects

Return Value

unspecified (ok).

Example

> (sleep 2)
ok
>