RosettaCodeData/Task/Input-loop/Lua/input-loop-2.lua
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

5 lines
109 B
Lua

lines = {}
for line in io.lines() do
table.insert(lines, line) -- add the line to the list of lines
end