Posts by DiO • 31 points
1 post
-
3
votes1
answer75
viewsQ: Referencing a table through a string in Lua
I need to use a table in Lua, but I can only reference it through a string, example: tabelaA = { "qualquer coisa" } variavelA = "tabelaA" print(variavelA) resultado: "qualquer coisa" Bearing in mind…