6 lines
78 B
Text
6 lines
78 B
Text
|
#!/usr/bin/env lua
|
||
|
|
||
|
for i, argument in ipairs{...} do
|
||
|
print(i, argument)
|
||
|
end
|