conlang-heonian/show_list.lua
2022-03-24 21:47:24 +01:00

10 lines
214 B
Lua

function showList()
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