fixing the documentation
This commit is contained in:
parent
2b05a35862
commit
4ba6e6a0c5
8
examples/fact.rkt
Normal file
8
examples/fact.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang planet dyoo/whalesong
|
||||||
|
(provide fact)
|
||||||
|
(define (fact x)
|
||||||
|
(cond
|
||||||
|
[(= x 0)
|
||||||
|
1]
|
||||||
|
[else
|
||||||
|
(* x (fact (sub1 x)))]))
|
|
@ -297,12 +297,12 @@ function and define it in a module called @filepath{fact.rkt}:
|
||||||
|
|
||||||
@margin-note{
|
@margin-note{
|
||||||
The files can also be downloaded here:
|
The files can also be downloaded here:
|
||||||
@itemlist[@item{@link["http://hashcollision.org/whalesong/fact-example/fact.rkt"]{fact.rkt}}
|
@itemlist[@item{@link["http://hashcollision.org/whalesong/examples/fact/fact.rkt"]{fact.rkt}}
|
||||||
@item{@link["http://hashcollision.org/whalesong/fact-example/index.html"]{index.html}}]
|
@item{@link["http://hashcollision.org/whalesong/examples/fact/index.html"]{index.html}}]
|
||||||
with generated JavaScript binaries here:
|
with generated JavaScript binaries here:
|
||||||
@itemlist[
|
@itemlist[
|
||||||
@item{@link["http://hashcollision.org/whalesong/fact-example/fact.js"]{fact.js}}
|
@item{@link["http://hashcollision.org/whalesong/examples/fact/fact.js"]{fact.js}}
|
||||||
@item{@link["http://hashcollision.org/whalesong/fact-example/runtime.js"]{runtime.js}}
|
@item{@link["http://hashcollision.org/whalesong/examples/fact/runtime.js"]{runtime.js}}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -381,6 +381,7 @@ The factorial of 10000 is <span id="answer">being computed</span>.
|
||||||
}|
|
}|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@margin-note{See: @link["http://hashcollision.org/whalesong/examples/fact/bad-index.html"]{bad-index.html}.}
|
||||||
Replacing the @racket[10000] with @racket["one-billion-dollars"] should
|
Replacing the @racket[10000] with @racket["one-billion-dollars"] should
|
||||||
reliably produce a proper error message.
|
reliably produce a proper error message.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user