benchmarks
Posted: Sun Feb 08, 2004 2:25 pm
There's a coding error in the loops benchmark. The benchmark code is (in part):It should be
Code: Select all
(for (a 0 n)
(for (b 0 n)
(for (c 0 n)) <-- misplaced paren
(for (d 0 n)
(for (e 0 n)
(for (f 0 n)
(inc 'x) )))))
Code: Select all
(for (a 0 n)
(for (b 0 n)
(for (c 0 n)
(for (d 0 n)
(for (e 0 n)
(for (f 0 n)
(inc 'x) )))))) <-- moved paren