mirror of
https://github.com/ProjectDreamland/area51.git
synced 2024-11-01 11:11:47 +01:00
6 lines
146 B
Lua
6 lines
146 B
Lua
-- emulate the command line behaviour of Lua 4.0
|
|
-- usage: lua doall.lua f1.lua f2.lua f3.lua ...
|
|
|
|
for i=1,table.getn(arg) do
|
|
dofile(arg[i])
|
|
end
|