[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Serializable Continuations in Ruby

Patrick Li

8/23/2008 5:33:00 AM

Does anyone know if there are any plans for implementing serializable
continuations in the future? I need the feature, and Scheme has it, but
I would like to avoid having to learn Scheme if possible. I'm just not a
prefix operator guy.
--
Posted via http://www.ruby-....

4 Answers

Martin DeMello

8/23/2008 5:54:00 AM

0

you'd be surprised at how pleasant a language scheme is to work with,
once you've used it for a while

martin

On Fri, Aug 22, 2008 at 10:32 PM, Patrick Li <patrickli_2001@hotmail.com> wrote:
> Does anyone know if there are any plans for implementing serializable
> continuations in the future? I need the feature, and Scheme has it, but
> I would like to avoid having to learn Scheme if possible. I'm just not a
> prefix operator guy.
> --
> Posted via http://www.ruby-....
>
>

Patrick Li

8/23/2008 6:23:00 AM

0

I would be very very happy if that turns out to be true.
Is there a book that you can recommend to me to get started?

I'm working through How to Design Programs right now, but it's not
comprehensive enough. It doesn't even talk about threads and
continuations, and skimps over the object system.

Also, I'm using Dr.Scheme right now. Is there an environment that has
syntax completion and documentation popups? .... besides emacs.... I
can't stand emacs.

-Patrick
--
Posted via http://www.ruby-....

Martin DeMello

8/23/2008 6:54:00 AM

0

On Fri, Aug 22, 2008 at 11:22 PM, Patrick Li <patrickli_2001@hotmail.com> wrote:
> I would be very very happy if that turns out to be true.
> Is there a book that you can recommend to me to get started?
>
> I'm working through How to Design Programs right now, but it's not
> comprehensive enough. It doesn't even talk about threads and
> continuations, and skimps over the object system.

Give PLAI a look:
http://www.cs.brown.edu/~sk/Publications/Books/ProgLangs/2...

> Also, I'm using Dr.Scheme right now. Is there an environment that has
> syntax completion and documentation popups? .... besides emacs.... I
> can't stand emacs.

Hm - not sure. All I ask of an IDE is good autoindentation, and
DrScheme gives me that.

martin

Christopher Dicely

8/23/2008 6:40:00 PM

0

On Fri, Aug 22, 2008 at 11:22 PM, Patrick Li <patrickli_2001@hotmail.com> wrote:
> I would be very very happy if that turns out to be true.
> Is there a book that you can recommend to me to get started?
>
> I'm working through How to Design Programs right now, but it's not
> comprehensive enough. It doesn't even talk about threads and
> continuations, and skimps over the object system.
>
> Also, I'm using Dr.Scheme right now. Is there an environment that has
> syntax completion and documentation popups? .... besides emacs.... I
> can't stand emacs.
>
> -Patrick
> --
> Posted via http://www.ruby-....

HtDP is designed to use Scheme to teach programming, not to teach
Scheme programming.

If you are using the PLT Scheme implementation (included in Dr.
Scheme), you should check out the docs at doc.plt-scheme.org, the
guide (more accessible) and reference (more complete) there seem to
cover the topics you are interested in. Autocompletion in Scheme is
difficult because they don't have much externally imposed syntax
beyond S-expressions; that's the source of the power of the language.