typo fixed with (lambda () ..); Closes PR 13164

This commit is contained in:
Matthias Felleisen 2012-10-05 16:37:05 -04:00
parent 6fde63007e
commit 6a1f50226e

View File

@ -1364,7 +1364,9 @@ in parallel:
(racketblock
> (apply launch-many-worlds/proc
(build-list (random 10)
(lambda (i) (main (number->string i)))))
(lambda (i)
(lambda ()
(main (number->string i))))))
0
9
1