string.format (formatstring, ···)
Returns a formatted version of its variable number of arguments following the description given in its first argument (which must be a string). The format string follows the same rules as the ISO C function sprintf. The only differences are that the options/modifiers *, h, L, l, n, and p
are not supported and that there is an extra option, q
.
Lua 5.3 doesn't support lld
, how can I print lld
in Lua 5.3?