Skip to content

Instantly share code, notes, and snippets.

@drauschenbach
Created February 24, 2019 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drauschenbach/b219a9b5349389bb83b8e7f3955c8344 to your computer and use it in GitHub Desktop.
Save drauschenbach/b219a9b5349389bb83b8e7f3955c8344 to your computer and use it in GitHub Desktop.
local moses = require 'moses'
local acc = {}
for _, i in ipairs(moses.range(5,11)) do
acc[#acc+1] = i
end
local result = table.concat(acc, ',')
print(result)
return result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment