closure.mes: document mes closure bug.

This commit is contained in:
Jan Nieuwenhuizen 2016-07-17 14:47:56 +02:00
parent 0a497a2765
commit c0b57d09f0
1 changed files with 28 additions and 0 deletions

28
closure.mes Normal file
View File

@ -0,0 +1,28 @@
;; guile:
;; closure path=(3 2 1)
;; closure path=()
;; mapit path=(3 2 1)
;; closure path=(2 1)
;; mes:
;; closure path=(3 2 1)
;; closure path=()
;; mapit path=()
;; ()
(define (closure start? path mapit)
(display "closure path=") (display path) (newline)
(cond (start?
(closure #f '() ;;path
(lambda (x)
(display "mapit path=") (display path) (newline)
(cond ((null? path) path)
(#t
(closure #f (cdr path) mapit)
)))))
(#t (mapit path))))
(closure #t '(3 2 1) (lambda (x) (display "dun") (newline)))