rsc3/doc/help/unsorted/poll.scrbl
2022-08-28 12:27:01 +02:00

18 lines
393 B
Racket

#lang scribble/manual
@(require (for-label racket))
@title{poll}
@racketblock[
(with-sc3
(lambda (fd)
(letrec ((print (lambda (e) (display e) (newline)))
(showing (lambda (f) (lambda () (let ((v (f))) (print v) v))))
(repeat (lambda (f) (if (f) (repeat f) #f))))
(async fd (notify 1))
(repeat (showing (lambda () (wait fd "/tr"))))
(async fd (notify 0)))))
]