This commit is contained in:
2026-02-24 09:49:08 +01:00
parent 21162e4376
commit f54ece35f5
6 changed files with 178 additions and 31 deletions

View File

@@ -9,8 +9,24 @@
make-delayed-reactor
mktable
simple-row-formatter
while
)
(define-syntax while
(syntax-rules ()
((_ cond body ...)
(letrec ((while-f (lambda (last-result)
(if cond
(let ((last-result (begin
body
...)))
(while-f last-result))
last-result))))
(while-f #f))
)
))
(define-syntax ww-connect
(syntax-rules (this)
((_ id method)