delayed-every ( quot duration -- timer )
Timers

Prev:later ( quot delay-duration -- timer )


Vocabulary
timers

Inputs
quota quotation
durationa duration


Outputs
timera timer


Word description
Creates a timer that calls quot repeatedly, waiting duration before calling quot the first time and then waiting duration between further calls. If the quotation throws an exception, the timer will stop.

Examples
USING: timers io calendar ; [ "Hi Buddy." print flush ] 10 seconds every drop


Definition