lua-users home
lua-l archive

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


Chris Marrin wrote:
>
> [...] so here is the current proposed list:
>
> errno()		return the last error string,number

errno is pointless.  Unlike C, Lua has multiple return values.
And I would suggest to use strings like "ENOTEMPTY" instead of
errno numbers.  The numbers are totally useless.

> mkdir(path)		create a directory at the passed path

mkdir(path [, mode])

Ciao, ET.


PS: I don't like the name osex.  I'd simply put them into os.