Module:Learn Lua

From Livermore History Collaborative
Revision as of 22:05, 25 November 2025 by Bmcfann (talk | contribs)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Learn Lua/doc

local p = {}

function p.myFunction(frame)
  local args = frame.args
  local text = args[1] or "Hello"
  return "The module says: " .. text
end

return p