aboutsummaryrefslogtreecommitdiff
path: root/challenge-111/abigail/lua
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-111/abigail/lua')
-rw-r--r--challenge-111/abigail/lua/ch-1.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge-111/abigail/lua/ch-1.lua b/challenge-111/abigail/lua/ch-1.lua
index 194e55b458..eb324dfa85 100644
--- a/challenge-111/abigail/lua/ch-1.lua
+++ b/challenge-111/abigail/lua/ch-1.lua
@@ -10,7 +10,7 @@
local MATRIX_SIZE = 5
-matrix = {}
+local matrix = {}
--
-- Read in the matrix
@@ -24,7 +24,7 @@ end
-- whether the number is present in the matrix or not.
--
while true do
- target = io . read ("*number")
+ local target = io . read ("*number")
if target == nil then break end
if matrix [target]
then print (1)