Updated Lua Scripting (markdown)

This commit is contained in:
rusefillc 2022-02-22 20:41:19 -05:00
parent 3c3febcaaf
commit a671764159
1 changed files with 11 additions and 0 deletions

View File

@ -381,6 +381,17 @@ function decimalToHex(num)
return result
end
function print_array(arr)
local str = ""
local index = 1
while arr[index] ~= nil do
str = str.." "..decimalToHex(arr[index])
index = index + 1
end
return str
end
```
# table