-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME
27 lines (20 loc) · 1.11 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
net.jimmc.scoroutine v1.0.4 2011-04-02
A scala library to simplify writing coroutines and generators.
Download scoroutine-N.N.N.jar for the library jar file.
Download scoroutine-src-N.N.N.zip for the sources, example sources, and api doc.
To compile from the source, unpack the src zip file, then create a symlink
called "scala-current" in the created directory that points to the version
of scala you are using. You must use scala version 2.8.0 or later, which
supports the continuations compiler plugin. To properly compile the api doc,
you should use dev 2.8.0 as of about August 20 2010 or a later version,
which supports the "@constructor" comment tag.
For background about delimited cotinuations, see my blog post
http://jim-mcbeath.blogspot.com/2010/08/delimited-continuations.html
For a discussion of coroutines and this library, see my blog post
http://jim-mcbeath.blogspot.com/2010/09/scala-coroutines.html
For a discussion of generators, see my blog posts
http://jim-mcbeath.blogspot.com/2010/09/scala-generators.html
and
http://jim-mcbeath.blogspot.com/2010/09/standalone-generic-scala-generator.html
--
Jim McBeath