[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: Lua Benchmark
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Wed, 21 Jul 1999 10:28:17 -0300 (EST)
>From lua-l@tecgraf.puc-rio.br Wed Jul 21 02:13:56 1999
>From: Dave Bollinger <DBollinger@compuserve.com>
>However, I made x a static array, so that might
>invalidate the test if Lua's creation of that table is a significant
>portion of the results - maybe I should've malloc'd.
Creating a table is not that expensive in Lua.
The use of local variables instead of global variables can make a difference.
--lhf