lua-users home
lua-l archive

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


On Wed, Nov 14, 2012 at 2:11 PM, Philippe Lhoste <PhiLho@gmx.net> wrote:
> // is already used in some languages for integer division. At least Visual
> Basic, IIRC...

So does Python 3.x, which means many people  would already be
comfortable with '//' meaning integer division.

>>> 3 / 2
1. 5
>>> 3 // 2
1


-- 
NI!