lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> what i found interesting is that Python performed so well, since the
> code is similar.  I guess that somewhere in the many megabytes of
> special-cases in the language core there's something that manages to
> optimize bad code.

The key to the difference is x += y versus x = x + y (assuming '+' for
the concatenate operator) and the internals implied by that, not any
smart optimization. The same languages that are fast in this particular
code are slow in any code that involves a lot of simple string assignments.

-- Roberto