lua-users home
lua-l archive

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


Most usefull function for beginers:

function dump(x) for k,v in pairs(x) do print(k,v) end end

dump(_G)
dump(string)

чт, 16 янв. 2020 г., 21:12 Javier Guerra Giraldez <javier@guerrag.com>:
On Thu, 16 Jan 2020 at 12:58, bil til <flyer31@googlemail.com> wrote:
>
> To make lua even a bit nicer for beginners, and to support nice lib
> documentation, I think it would be very nice if lua in some future
> optionally could support some function like Phyton help() in some future
> version.