2014-07-09 04:21:52 -06:00
|
|
|
--print-args.lua
|
2014-06-26 06:36:57 -06:00
|
|
|
--author expwnent
|
2015-11-04 05:14:10 -07:00
|
|
|
--[[=begin
|
|
|
|
|
|
|
|
devel/print-args
|
|
|
|
================
|
|
|
|
Prints all the arguments you supply to the script on their own line.
|
|
|
|
Useful for debugging other scripts.
|
|
|
|
|
|
|
|
=end]]
|
2014-06-26 06:36:57 -06:00
|
|
|
|
|
|
|
local args = {...}
|
|
|
|
for _,arg in ipairs(args) do
|
2014-11-09 16:37:11 -07:00
|
|
|
print(arg)
|
2014-06-26 06:36:57 -06:00
|
|
|
end
|