-
-
Notifications
You must be signed in to change notification settings - Fork 5
Printf
Anthony Headley edited this page Apr 19, 2020
·
2 revisions
Outputs a white(1) colored string to the consoles Command Line History AND System Monitor (1) This may be a bug.
Name | Description | Optional |
---|---|---|
string:format | lua formatted string see https://www.lua.org/pil/20.html for further details |
nil
Printf("Testing, Testing " .. 100 + 20 + 3 .. "!")
Printf("Testing, Testing %d!", 100 + 20 + 3)
local test = "Testing"
Printf("%s, %s %d!", test, test, 100 + 20 + 3) -- Testing, Testing 123 (decimal)
Printf("%s, %s %f!", test, test, 100 + 20 + 3 + 0.0) -- Testing, Testing 123.000000! (float)
Printf("%s, %s %x!", test, test, 2748) -- Testing, Testing abc (hex)