You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mba105 edited this page Sep 24, 2014
·
2 revisions
Home > [Scripting Reference](Scripting Reference) > printf
printf
The printf performs like its C counterpart, printing a formatted string.
#!lua
printf("format", ...)
It is equivalent to this Lua code:
#!lua
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.