documenting racket 5.1.2 requirement.

This commit is contained in:
Danny Yoo 2011-08-30 14:41:02 -04:00
parent 84d404af0c
commit ea5bb1a77e
2 changed files with 10 additions and 10 deletions

View File

@ -1,10 +0,0 @@
#lang planet dyoo/whalesong
(define (f x)
(if (= x 0)
"one"
(* x (f (sub1 x)))))
(f 0)
(list (f 3)
(f 4))

View File

@ -22,6 +22,16 @@
@section{Installation}
Racket 5.1.2 or greater is a prerequisite for Whalesong. Brown CS
maintains their own install for 5.1.3 in
@filepath{/local/projects/racket/releases/5.1.3/bin/}.
shell, you can add:
@verbatim|{
pathprependifdir PATH "/local/projects/racket/releases/5.1.3/bin"
}|
to your @filepath{.environment}.
We'll install a local development copy of Whalesong in a @filepath{whalesong} subdirectory.
On the very first time we install Whalesong:
@verbatim|{