Codebase list lua-ldoc / f57d1b4 tests / funmod.lua
f57d1b4

Tree @f57d1b4 (Download .tar.gz)

funmod.lua @f57d1b4raw · history · blame

-------
-- Summing values.
-- Returns a single function.
-- @param a first
-- @param b second
-- @param c third
-- @return sum of parameters
-- @module funmod

return function(a,b,c)
   return a + b + c
end