From: Alex Mizrahi
Subject: continuations in Common Lisp
Date: 
Message-ID: <424b2f1a$0$43995$14726298@news.sunsite.dk>
Hello, All!

in the book "Programming Languages: Application and Interpretation" by
Shriram Krishnamurthi
usage of continuations for web-programs is described.
i found them very nice. but continuations are supported by Scheme language,
not by Common Lisp, do i have to move to Scheme only to get continuations
working??

i believe they can be somehow added into Common Lisp. that book describes
code transformations required to implement continuations if they are not
supported by language. but doing that from scratch is an overkill, isn't
there some lib that just works and adds continuations into Common Lisp? i
don't need 100% compatible implementation, it should just work in some
situations..

With best regards, Alex 'killer_storm' Mizrahi.

From: Pascal Bourguignon
Subject: Re: continuations in Common Lisp
Date: 
Message-ID: <873bucsiaw.fsf@thalassa.informatimago.com>
"Alex Mizrahi" <········@users.sourceforge.net> writes:

> Hello, All!
> 
> in the book "Programming Languages: Application and Interpretation" by
> Shriram Krishnamurthi
> usage of continuations for web-programs is described.
> i found them very nice. but continuations are supported by Scheme language,
> not by Common Lisp, do i have to move to Scheme only to get continuations
> working??
> 
> i believe they can be somehow added into Common Lisp. that book describes
> code transformations required to implement continuations if they are not
> supported by language. but doing that from scratch is an overkill, isn't
> there some lib that just works and adds continuations into Common Lisp? i
> don't need 100% compatible implementation, it should just work in some
> situations..
> 
> With best regards, Alex 'killer_storm' Mizrahi.

Have a look at:  http://lisp.tech.coop/Web%2FContinuation

-- 
__Pascal Bourguignon__                     http://www.informatimago.com/

Nobody can fix the economy.  Nobody can be trusted with their finger
on the button.  Nobody's perfect.  VOTE FOR NOBODY.
From: ···············@yahoo.com
Subject: Re: continuations in Common Lisp
Date: 
Message-ID: <1112291061.132240.291580@o13g2000cwo.googlegroups.com>
The book On Lisp at www.paulgraham.com has a chapter on bringing
continuations into Common Lisp, with code.