Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
ElmerCSC
Edit Copy
Star
GitHub Repository:
ElmerCSC/elmerfem
Path:
blob/devel/contrib/lua-5.1.5/test/echo.lua
3
2
0
3
views
1
-- echo command line arguments
2
3
for
i
=
0
,
table.getn
(
arg
)
do
4
print
(
i
,
arg
[
i
]
)
5
end
6
7