sys:wait   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/scheme.xtm

Implementation

(define sys:wait
   (lambda (until-time)
      (call/cc (lambda (cont)
      (callback until-time cont #t)
      (*sys:toplevel-continuation* 0)
      #t))))


Back to Index

Similar Entries