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