summaryrefslogtreecommitdiff
path: root/test/table.lua
blob: 2c2dd90a3fba52706e6714a434cf523c2ceae142 (plain)
1
2
3
4
5
6
7
local A
while 1 do
 local a,b=read("*w","*w")
 if a==nil then break end
 if a~=A then A=a write("\n",a,":\n") end
 write(b," ")
end