caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Frank Christoph <christo@nextsolution.co.jp>
To: caml-list@inria.fr
Subject: continuations
Date: Fri, 9 May 1997 10:35:47 +0900	[thread overview]
Message-ID: <199705090135.KAA00380@sparc3.co.jp> (raw)
In-Reply-To: <199705071624.LAA29105@kimbark.uchicago.edu>

>>>>> "Lyn" == Lyn A Headley <laheadle@midway.uchicago.edu> writes:
> hi, I was reading an article about language implementation in Standard ML
> (slightly annoying name isn't it?) which described a continuation-passing
> interpreter.  It seems that in sml, continuations are simply unit -> unit
> functions.  So it seems that any language with higher-order functions is
> capable of passing continuations.  This is not the impression I get from the
> Scheme camp, who seem to think that continuations are a special form that
> only a few almighty languages support.  Anyone know the full story?

It doesn't take any special facility to use continuations if you are writing
in CPS (continuation-passing style) or monadic style; either technique can be
used in any functional language.  For example, functional parsers are often
written in this way.  On the other hand, if you want to be able to capture the
current continuation in a functional language in any piece of code (i.e., in
so-called direct style), the interpreter or compiler has to be able to save
the current context, duplicate it, discard it and reinstate it later on.
Compilers or interpreters that support that are said to support first-class
continuations.  It turns out that in fact the New Jersey implementation of SML
does have first-class continuations; I believe they are typed as "'a cont",
where "cont" is a special type constructor that is hard-wired into the
language.

Any good book on functional programming will outline at least the basics of
continuation-passing style, but books that use Scheme make more frequent use
of them because Scheme happens to be the a language that supports first-class
continuations.  (In fact, you can make a good case that any eager language
should support them.)

-- 
Frank Christoph                 Next Solution Co.      Tel: 0424-98-1811
christo@nextsolution.co.jp                             Fax: 0424-98-1500





  reply	other threads:[~1997-05-09  7:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1997-05-07 16:24 continuations Lyn A Headley
1997-05-09  1:35 ` Frank Christoph [this message]
2006-08-30 15:24 Continuations Tom

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=199705090135.KAA00380@sparc3.co.jp \
    --to=christo@nextsolution.co.jp \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).