[functional-tests] from-to loop macro

This commit is contained in:
Joe Thornber 2017-12-20 08:31:17 +00:00
parent fa8d691744
commit 05151c648c
1 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,6 @@
(library
(loops)
(export upto while)
(export upto from-to while)
(import (rnrs))
(define-syntax upto
@ -11,6 +11,14 @@
(begin body ...)
(loop (+ 1 var)))))))
(define-syntax from-to
(syntax-rules ()
((_ (var f t step) b1 b2 ...)
(let loop ((var f))
(unless (= var t)
b1 b2 ...
(loop (+ var step)))))))
(define-syntax while
(syntax-rules ()
((_ (var exp) body ...)