File: echo.lua

package info (click to toggle)
tagua 1.0~alpha2-9
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 7,924 kB
  • ctags: 7,180
  • sloc: cpp: 26,148; ansic: 13,039; makefile: 228; ruby: 87; sh: 39
file content (5 lines) | stat: -rw-r--r-- 80 bytes parent folder | download | duplicates (67)
1
2
3
4
5
-- echo command line arguments

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