This repository has been archived on 2024-04-19. You can view files and clone it, but cannot push or open issues or pull requests.
FREAX/etc/script_util/secho
2022-07-18 19:33:40 +02:00

9 lines
136 B
Text

local tArgs = {...}
for k,v in ipairs(tArgs) do
if k==1 then
write(tostring(v))
else
write(" "..tostring(v))
end
end
write("\n")