Skip to content
Anthony Headley edited this page Apr 19, 2020 · 2 revisions

Printf(string:format ...)

Breif:

Outputs a white(1) colored string to the consoles Command Line History AND System Monitor (1) This may be a bug.

Paramiters:

Name Description Optional
string:format lua formatted string see https://www.lua.org/pil/20.html for further details

Returns:

nil

Examples:

    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)
Clone this wiki locally