You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
850 B
Racket
37 lines
850 B
Racket
8 years ago
|
#lang racket/base
|
||
|
(require (for-syntax racket/base))
|
||
|
(provide (all-defined-out))
|
||
|
|
||
|
(define-syntax-rule (until COND EXPR ...)
|
||
|
(let loop ()
|
||
|
(unless COND
|
||
|
EXPR ...
|
||
|
(loop))))
|
||
|
|
||
|
(define-syntax-rule (while COND EXPR ...)
|
||
|
(let loop ()
|
||
|
(when COND
|
||
|
EXPR ...
|
||
|
(loop))))
|
||
|
|
||
|
(define-syntax (forever stx)
|
||
|
(syntax-case stx ()
|
||
|
[(_ . EXPRS)
|
||
|
;; todo: would be better with a syntax parameter
|
||
|
(with-syntax ([stop (datum->syntax #'EXPRS 'stop)])
|
||
|
#'(let/ec stop
|
||
|
(while #t
|
||
|
. EXPRS)))]))
|
||
|
|
||
|
(module+ test
|
||
|
(require rackunit)
|
||
|
(check-equal? (let ([x 5])
|
||
|
(until (zero? x)
|
||
|
(set! x (- x 1)))
|
||
|
x) 0)
|
||
|
(check-equal? (let ([x 5])
|
||
|
(while (positive? x)
|
||
|
(set! x (- x 1)))
|
||
|
x) 0))
|
||
|
|