diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-06-24 11:58:33 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-06-24 12:00:16 +0300 |
commit | 61fad5fd04f90542b2842dec86a6f74a4f801de7 (patch) | |
tree | a30cac169de8cde1f822af2c5d1806300b62197f /indra/newview/scripts/lua/require/printf.lua | |
parent | b8e0c16ab1eb3cdd1d11e869bd3fd6196de51d4b (diff) | |
parent | 75accbefdbe7741d57bf093690d65ad1100f82d4 (diff) |
Merge branch 'release/luau-scripting' into lua-appearance-listener
Diffstat (limited to 'indra/newview/scripts/lua/require/printf.lua')
-rw-r--r-- | indra/newview/scripts/lua/require/printf.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/indra/newview/scripts/lua/require/printf.lua b/indra/newview/scripts/lua/require/printf.lua new file mode 100644 index 0000000000..e84b2024df --- /dev/null +++ b/indra/newview/scripts/lua/require/printf.lua @@ -0,0 +1,19 @@ +-- printf(...) is short for print(string.format(...)) + +local inspect = require 'inspect' + +local function printf(format, ...) + -- string.format() only handles numbers and strings. + -- Convert anything else to string using the inspect module. + local args = {} + for _, arg in pairs(table.pack(...)) do + if type(arg) == 'number' or type(arg) == 'string' then + table.insert(args, arg) + else + table.insert(args, inspect(arg)) + end + end + print(string.format(format, table.unpack(args))) +end + +return printf |