hi, friends
I have ever learned Lisp at colleage. and i like its elegant way to program.
However i really do not understand the meaning and usgae of continuation :(
For example, the following code makes me a big head!
(define bar (lambda (bar) bar))
(define foox (lambda (foo) (display "@") foo))
(define fooy (lambda (foo) (display "*") foo))
(foox (call/cc bar) (fooy (call/cc bar)))
you will get "@[EMAIL PROTECTED]@[EMAIL PROTECTED] ................."
would you mind explain the code ?
Sincerely!
--------------
z_axis
2008-09-24