mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-01-05 22:41:55 -05:00
405 B
Vendored
405 B
Vendored
The printf
performs like its C counterpart, printing a formatted string.
printf("format", ...)
It is equivalent to this Lua code:
print(string.format(format, unpack(arg))
Parameters
format is a formatting string containing C printf()
style formatting codes. It is followed by a list of arguments to be substituted into the format string.
Return Value
None.