dev

This module was made as a sandbox for the user Joebob555. This documentation is kept to prevent redlinks.


--Table
local invocable = {}
 
function invocable.greet(frame)
   local parent = frame:getParent()
   local name = parent.args[1]
   local name2 = parent.args[2] or ""
 
   return "Live long and prosper :" ..name ..' '..name2
end
 
return invocable