lua-users home
lua-l archive

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


For this code:
> --[[
>     comment
> ]]
> for k in pairs(debug.getinfo(1, "L").activelines) do
>    print(k)
> end

The output is:
1
4
5
6

I think it should be
4
5
6

-- actboy168