[sm130futures] Start moving externs to consistent location.

This commit is contained in:
Jason Felds
2011-05-04 17:56:36 -04:00
parent 4e8b475377
commit 808f67e9f0
101 changed files with 221 additions and 572 deletions
+12
View File
@@ -0,0 +1,12 @@
-- 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")