Difference between revisions of "Continuation"

From HaskellWiki
Jump to navigation Jump to search
((1) Links to →‎General or introductory materials: on the concept itself. (2) Links describing the →‎Continuation monad)
 
(Wikipedia has both ``Continuation'' and ``Continuation-passing style'' pages)
Line 3: Line 3:
 
== General or introductory materials ==
 
== General or introductory materials ==
   
* Wikipedia's [http://en.wikipedia.org/wiki/Continuation Continuation] is a surprisingly good introductory material on this topic.
+
* Wikipedia's [http://en.wikipedia.org/wiki/Continuation Continuation] is a surprisingly good introductory material on this topic. See also [http://en.wikipedia.org/wiki/Continuation-passing_style Continuation-passing style].
 
* [http://www.isi.edu/~hdaume/htut/ Yet Another Haskell Tutorial] written by Hal Daume III contains a section on continuation passing style (4.6 Continuation Passing Style, pp 53-56)
 
* [http://www.isi.edu/~hdaume/htut/ Yet Another Haskell Tutorial] written by Hal Daume III contains a section on continuation passing style (4.6 Continuation Passing Style, pp 53-56)
 
* HaWiki has a page on [http://haskell.cs.yale.edu/hawiki/ContinuationPassingStyle ContinuationPassingStyle], and some related pages linked from there, too.
 
* HaWiki has a page on [http://haskell.cs.yale.edu/hawiki/ContinuationPassingStyle ContinuationPassingStyle], and some related pages linked from there, too.

Revision as of 13:31, 24 May 2006

General or introductory materials

Continuation monad