Posted 01 July 2013 - 08:13 AM
I'm trying to use textutils.tabulate to output tables within tables. However the amount of tables are unknown. How can I loop through available tables within textutils.tabulate?
Example below:
Thanks
Example below:
local tTable = {
{"Heading1", "Heading2", "Heading3"},
{"Entry1a", "Entry1b", "Entry1c"},
{"Entry2a", "Entry2b", "Entry2c"}}
--tabulate tables, knowing first entry will always exist
textutils.tabulate(tTable[1], ???)
Thanks