[PLT announcement] Re: [plt-scheme] PLT Scheme 207 available
On May 19, Paulo Jorge de Oliveira Cantante de Matos wrote:
> > (build-list (quotient seconds 10) add1)
> > and watch.
>
> For some reason I get this:
> Welcome to DrScheme, version 207.
> Language: FrTime.
> > (build-list (quotient seconds 10) add1)
> . reference to undefined identifier: build-list
That was a typo. Try this instead:
(map (lambda (i) (modulo seconds (+ i 1))) '(0 1 2 3 4 5 6 7 8 9))
--
((lambda (x) (x x)) (lambda (x) (x x))) Eli Barzilay:
http://www.barzilay.org/ Maze is Life!