Content deleted Content added
No edit summary |
No edit summary |
||
Line 6:
output = "Bob "
local done = 0 ▼
--
local i = 1
while done == 0 do
if args[i] == nil then
output = output.." End."
done = 1
else
output = output.." "..args[i]
i=i+1
end
end
|