Skip to content

Instantly share code, notes, and snippets.

@exerro
Created June 20, 2016 18:39
Show Gist options
  • Save exerro/ebe20830e5bbdbb73f0f75c9341356fc to your computer and use it in GitHub Desktop.
Save exerro/ebe20830e5bbdbb73f0f75c9341356fc to your computer and use it in GitHub Desktop.
local function concat(t, start, finish)
local s = ""
start = start or 1
finish = finish or #t
while start <= finish do
s = s .. t[start]
start = start + 1
end
return s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment