Welcome to mirror list, hosted at ThFree Co, Russian Federation.

echo.lua « test « lua-5.1.2 « base « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4313439a855a73a7a63eb39124cb316694514b9b (plain)
1
2
3
4
5
-- echo command line arguments

for i=0,table.getn(arg) do
 print(i,arg[i])
end