lua-users home
lua-l archive

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


Antero Vipunen wrote:
Lua lexer treats dot `.' as separator. But relies (by default) on strtod() for converting, and thus if your ``local'' separator is `,', you are unable to compile the following sample program:

local a = 1.5

This is a problem?

If Lua did start to respect local separators for numbers, what would happen in this case:

	someFunction(1,5)

Is that one argument or two?