8 lines
134 B
Plaintext
8 lines
134 B
Plaintext
local args = {...}
|
|
while true do
|
|
if #args == 0 then
|
|
print("y")
|
|
else
|
|
print(table.concat(args, " "))
|
|
end
|
|
end |