diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-07-01 22:08:45 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-07-01 22:08:45 -0400 |
| commit | 774b296d3e49b8be3b0feaee8b5d3154fcec73b6 (patch) | |
| tree | e076254b6332c177dc34b4d87bc222f52ca49646 /test/tests/forinloop.lua | |
| download | glum-774b296d3e49b8be3b0feaee8b5d3154fcec73b6.tar.gz glum-774b296d3e49b8be3b0feaee8b5d3154fcec73b6.tar.bz2 glum-774b296d3e49b8be3b0feaee8b5d3154fcec73b6.zip | |
Initial commit
Diffstat (limited to 'test/tests/forinloop.lua')
| -rw-r--r-- | test/tests/forinloop.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/tests/forinloop.lua b/test/tests/forinloop.lua new file mode 100644 index 0000000..b9ee57b --- /dev/null +++ b/test/tests/forinloop.lua @@ -0,0 +1,10 @@ + +local tbl = { + "Alpha", + "Beta", + "Charlie", +} + +for k,v in pairs(tbl) do + print(v) +end |
