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