lua-users home
lua-l archive

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


Ok thank you


2016-05-08 21:19 GMT+02:00 Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>:
> Is there a workaround ?

        for i=-0.5,0.5+0.2/2,0.2 do
                print(i)
        end

or
        for i=-5,5,2 do
                print(i/10)
        end