template-carousel-mobile/0043-map
Kartik K. Agaram e53245e62d implement 'Run' button
Error flow is still klunky. We'll need to implement the output region
for that.
2023-11-18 19:42:26 -08:00

7 lines
128 B
Plaintext

map = function(arr, f)
local result = {}
for _, x in ipairs(arr) do
table.insert(result, f(x))
end
return result
end