added a way to edit, remove, and add words

This commit is contained in:
UndeadMaelys
2022-03-24 21:47:24 +01:00
parent 39335c7e09
commit 93da415c03
9 changed files with 396 additions and 177 deletions

View File

@@ -1,4 +1,4 @@
return function()
function showList()
results_table = {}
for i=1, #words do
local word = {i,words[i]}
@@ -6,4 +6,4 @@ return function()
end
results_table = adjustTableSizes(results_table)
printOutputTable(results_table)
end
end