lua-users home
lua-l archive

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


> a.1 could be mistaken for an erroneous floating point number.

So could a1.E3. In fact, if you squint your eyes tightly enough, anything 
could be mistaken for anything else :)

Speaking of erroneous numbers, a side issue:

F=1E=3
-- compile error: malformed number

E=3F=1
-- valid; two assignments

Personally, I think the second one should be an error, too. But then I'm 
fond of spaces.

R.