summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/lua/test/echo.lua
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/util/lua/test/echo.lua')
-rw-r--r--crawl-ref/source/util/lua/test/echo.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/util/lua/test/echo.lua b/crawl-ref/source/util/lua/test/echo.lua
new file mode 100644
index 0000000000..4313439a85
--- /dev/null
+++ b/crawl-ref/source/util/lua/test/echo.lua
@@ -0,0 +1,5 @@
+-- echo command line arguments
+
+for i=0,table.getn(arg) do
+ print(i,arg[i])
+end