RosettaCodeData/Task/Nested-function/Lua/nested-function.lua

11 lines
287 B
Lua
Raw Normal View History

2023-07-01 11:58:00 -04:00
function makeList (separator)
local counter = 0
local function makeItem(item)
counter = counter + 1
return counter .. separator .. item .. "\n"
end
return makeItem("first") .. makeItem("second") .. makeItem("third")
end
print(makeList(". "))