hi,

is it possible to spawn a timed task from another task?
this does not seem to work:

(spawn-timed-task (+ (time-now) 1)
  (lambda ()
    (display "hello1!")(newline)
    (spawn-timed-task (+ (time-now) 1)
      (lambda ()
        (display "hello2!")(newline)))))

it only displays "hello1!".

best,
gabor

Reply via email to