diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-29 20:02:35 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-29 20:02:35 -0400 |
commit | e1cdfd27cad943290a0233119548a8dd8876bd52 (patch) | |
tree | 1dc0526cc492f9112b5269511c9d634599304940 /lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/table.lua | |
parent | 4ac4b280abf2ffa28caa5a532353115a3033444f (diff) |
Replaced LuaBridge with sol2 and completely encapsulated scripting within script system
Diffstat (limited to 'lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/table.lua')
-rw-r--r-- | lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/table.lua | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/table.lua b/lib/LuaBridge/Tests/Lua/Lua.5.1.5/test/table.lua deleted file mode 100644 index 235089c..0000000 --- a/lib/LuaBridge/Tests/Lua/Lua.5.1.5/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") |