Guest User

Untitled

a guest
May 16th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. (define (iteration return)
  2. (each
  3. (lambda (element)
  4. (set! return (call-with-current-continuation
  5. (lambda (resume-point)
  6. (set! iteration resume-point)
  7. (return element)))))
  8. table)
  9. (return #f))
Add Comment
Please, Sign In to add comment