10 lines
219 B
Lua
10 lines
219 B
Lua
|
--printArgs.lua
|
||
|
--author expwnent
|
||
|
--prints all the arguments on their own line with quotes around them. useful for debugging
|
||
|
|
||
|
local args = {...}
|
||
|
print("printArgs")
|
||
|
for _,arg in ipairs(args) do
|
||
|
print("'"..arg.."'")
|
||
|
end
|