summaryrefslogtreecommitdiff
path: root/com32/lua/test/table.lua
diff options
context:
space:
mode:
authorFerenc Wágner <wferi@niif.hu>2013-10-10 16:48:04 +0200
committerFerenc Wágner <wferi@niif.hu>2014-03-01 17:40:34 +0100
commit4cfcef19a983dfa971608a8917cd74ebfa0d7376 (patch)
tree0c5abe5d8abc190d02847bd99424c24be6fadb18 /com32/lua/test/table.lua
parenta06818de2a4c49bd64a024dd4f4a09a0caf1f0ac (diff)
downloadsyslinux-4cfcef19a983dfa971608a8917cd74ebfa0d7376.tar.gz
lua: import Lua 5.2.2
Source downloaded from http://www.lua.org/ftp/lua-5.2.2.tar.gz. The com32/lua directory now matches exactly the source distribution, plus the various Syslinux extension modules and their documentation.
Diffstat (limited to 'com32/lua/test/table.lua')
-rw-r--r--com32/lua/test/table.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/com32/lua/test/table.lua b/com32/lua/test/table.lua
deleted file mode 100644
index 235089c0..00000000
--- a/com32/lua/test/table.lua
+++ /dev/null
@@ -1,12 +0,0 @@
--- make table, grouping all data for the same item
--- input is 2 columns (item, data)
-
-local A
-while 1 do
- local l=io.read()
- if l==nil then break end
- local _,_,a,b=string.find(l,'"?([_%w]+)"?%s*(.*)$')
- if a~=A then A=a io.write("\n",a,":") end
- io.write(" ",b)
-end
-io.write("\n")