Here is my code (I'm testing):
01 | local information = { |
02 | User = { |
03 | [ "UserName" ] = "EncodedLua" , |
04 | [ "Membership" ] = "OBC" |
05 | } |
06 | } |
07 | local master_dictionary = { |
08 |
09 | } |
10 |
11 | table.insert(master_dictionary, information) |
12 |
13 | for i, v in ipairs (master_dictionary) do -- What do all do I do in this for loop? I know that you have to use a for loop somewhere in the process. |
14 | end |