First, I'm a LISP newbie.

What I want to get is a cooperative micro-threading feature. And this can be gained with coroutine. As I know, Scheme supports coroutines via continuations. However, not all Scheme implementation may have continuations. If so, can I add a continuation feature with only LISP primitives?

link|improve this question

77% accept rate
About which kind of "LISP" are you talking? – Svante Aug 9 '10 at 10:08
@Svante Mainly Scheme, but possibly any kind of LISP. I talked about LISP 'primitives' which any LISP has. I wanna challenge to make own implementation if I could :) – Eonil Aug 10 '10 at 0:57
3  
Ah. Well, I thought that you might mean some ancient dialect, one from the time where people still spelt it in all capitals. – Svante Aug 10 '10 at 2:08
feedback

1 Answer

up vote 5 down vote accepted

You can. Chapters 5 and 6 of Essentials of Programming Languages shows how to implement continuations in Scheme. In his book On Lisp, Paul Graham explains how to implement continuations in Common Lisp (Chapters 20-22).

link|improve this answer
These 'continuations' for CL are relatively limited, I'd think. – Rainer Joswig Aug 9 '10 at 7:07
@Rainer Can I know about the limitation? – Eonil Aug 9 '10 at 8:22
@Eonil On Lisp contains an implementation of multi-threading on continuations, so co-routines also might be possible with that implementation. – Vijay Mathew Aug 9 '10 at 10:46
Yes, thanks again! – Eonil Aug 10 '10 at 0:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.