Created
October 26, 2021 11:10
-
-
Save ogabrielguerra/bbbfd661046a89d1fcb9d81509746379 to your computer and use it in GitHub Desktop.
LUA - Dump a table or object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local inspect = require('inspect') | |
local table = { a='a', b='b', c='c'} | |
print(inspect(table)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment