aboutsummaryrefslogtreecommitdiff
path: root/challenge-089/stuart-little/lua/ch-2.lua
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-089/stuart-little/lua/ch-2.lua')
-rwxr-xr-xchallenge-089/stuart-little/lua/ch-2.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/challenge-089/stuart-little/lua/ch-2.lua b/challenge-089/stuart-little/lua/ch-2.lua
new file mode 100755
index 0000000000..af8bfbccf3
--- /dev/null
+++ b/challenge-089/stuart-little/lua/ch-2.lua
@@ -0,0 +1,7 @@
+#!/usr/bin/env lua
+
+-- run <script>
+
+for _,r in ipairs({{2,7,6},{9,5,1},{4,3,8}}) do
+ print(table.unpack(r))
+end