area51/Support/lua/etc/doall.lua
Andrew Sampson 431f72b93a source
2021-08-27 19:22:41 -07:00

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