On Wed, 2011-03-23 at 00:31 -0700, Christian Schuhegger wrote: 
> Does a public repository exist (e.g. on github) where people could
> clone the repository and potentially contribute?



There is no repository. Everything (including all of the runnable
source) is in a single book. To build a running Clojure REPL and
a PDF copy of the book do:

wget http://literatesoftware.com/clojure.pamphlet
wget http://literatesoftware.com/tangle.c 
    (the tangle.c source is also in the book so you could extract 
     it from the pamphlet file instead)
wget http://literatesoftware.com/clojure.pdf
    (not really necessary as the next step will create the pdf
     but you might want to read it first)
gcc -o tangle tangle.c
tangle clojure.pamphlet Makefile >Makefile
make

You end up with a running Clojure REPL and a PDF of the book.

To make changes just modify the clojure.pamphlet file and type
make

You can send me your complete changed version or do
diff -Naur clojure.pamphlet.original clojure.pamphlet.new >clojure.patch

The basic philosophy of literate programming is that you 
are writing for other people, not for the machine. This book
is an attempt to make the Clojure source code readable by
more people. What we are trying to do is start from the ideas
and move to the code so people understand why the code does
what it does.

Tim Daly




-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to