Deprecated: Use of MediaWiki\Skin\Skin::appendSpecialPagesLinkIfAbsent was deprecated in MediaWiki 1.44. [Called from MediaWiki\Skin\Skin::buildSidebar in /var/www/html/includes/skins/Skin.php at line 1639] in /var/www/html/includes/debug/MWDebug.php on line 386
Jump to content

User:Plankton/sandbox: Difference between revisions

From Consumer Rights Wiki
Plankton (talk | contribs)
testing if lua works
Plankton (talk | contribs)
No edit summary
Line 1: Line 1:
local p{}
local p{}
function p.hello(frame)
function p.hello(frame)
    local name = frame.args[1] or "world"
local name = frame.args[1] or "world"
    return "Hello, " .. name .. "!"
return "Hello, " .. name .. "!"
end
end
return p
return p

Revision as of 04:37, 31 October 2025

local p{} function p.hello(frame) local name = frame.args[1] or "world" return "Hello, " .. name .. "!" end return p