lua-users home
lua-l archive

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


On 2010-03-18, WU Jun <quark@lihdd.net> wrote:
> Lua is written in ANSI C. It relys on C rules and is originally designed
>  to work together with C.
>
>  To get C knowledge about formatting, use man or info utilities. They
>  provide offical and complete documentation.
>
>  Repeating these kinds of documentation in lua document is not necessary,
>  and may be not updated.
>

Please, read Lua manual. Lua does *NOT* support many of important
printf flags that are part of ANSI C. You simply cannot use "%lld" in
Lua but you can use it C.

--Leo--