Sha256: 95cd1d6f6f479e3d751e7e7b9ebbe22f8b93f082a9d8f61641540d93e23a1ce5
Contents?: true
Size: 283 Bytes
Versions: 23
Compression:
Stored size: 283 Bytes
Contents
-- 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")
Version data entries
23 entries across 23 versions & 2 rubygems