diff options
| -rw-r--r-- | challenge-096/abigail/lua/ch-1.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-096/abigail/lua/ch-1.lua b/challenge-096/abigail/lua/ch-1.lua index 68d1c5eb86..9c4b1de913 100644 --- a/challenge-096/abigail/lua/ch-1.lua +++ b/challenge-096/abigail/lua/ch-1.lua @@ -2,7 +2,7 @@ for line in io . lines () do -- -- Extract words and put them into an array, in reverse. -- - words = {} + local words = {} for str in string . gmatch (line, "[^ ]+") do table . insert (words, 1, str) end |
