So I have tables in a text file. 1 line per table so that when I read from the file using var:lines() and put each line into a table in the program, they are accessible. However, now I have a table of strings that looks like this:
"{user = "ADMIN", pass = "ADMIN", settings = {}, admin = true},"
"{user = "KARASURO", pass = "TEST", settings = {} }"
What would be the best way to get these tables from the file without them being strings?
(How does one table a string?)