upload to git
This commit is contained in:
9
show_list.lua
Normal file
9
show_list.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
return function()
|
||||
results_table = {}
|
||||
for i=1, #words do
|
||||
local word = {i,words[i]}
|
||||
table.insert(results_table,word)
|
||||
end
|
||||
results_table = adjustTableSizes(results_table)
|
||||
printOutputTable(results_table)
|
||||
end
|
||||
Reference in New Issue
Block a user