Open main menu
Home
Random
Donate
Recent changes
Special pages
Community portal
Preferences
About Stockhub
Disclaimers
Search
User menu
Talk
Contributions
Create account
Log in
Editing
Module:Sandbox/Davykamanzi
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
-- Sample Module demonstrating how to access arguments. -- For more about the Frame object, see http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Frame_object -- Unit tests at Module:BananasArgs/testcases local p = {} -- No arguments, used like: {{#invoke:BananasArgs|hello_world}} function p.hello_world() return "Hello, world!" end -- One argument, used like: {{#invoke:BananasArgs|hello|Fred}} function p.hello(frame) local name = frame.args[1] -- in this example, args[1] is the word Fred return "Hello, " .. name .. "!" -- .. name .. replace by the word Fred end -- Two arguments, used like: {{#invoke:BananasArgs|add|5|3}} function p.add(frame) local num1 = tonumber(frame.args[1]) local num2 = tonumber(frame.args[2]) return num1 + num2 end -- Named arguments, used like: {{#invoke:BananasArgs|count_fruit|bananas=5|apples=3}} function p.count_fruit(frame) local num_bananas = frame.args.bananas local num_apples = frame.args.apples return 'I have ' .. num_bananas .. ' bananas and ' .. num_apples .. ' apples' end -- Mixing regular args with named args and optional named args -- Used like: {{#invoke:BananasArgs|has_fruit|Fred|bananas=5|cherries=7}} function p.has_fruit(frame) local name = frame.args[1] local num_bananas = frame.args.bananas local num_apples = frame.args.apples local num_cherries = frame.args.cherries local result = name .. ' has:' if num_bananas then result = result .. ' ' .. num_bananas .. ' bananas' end if num_apples then result = result .. ' ' .. num_apples .. ' apples' end if num_cherries then result = result .. ' ' .. num_cherries .. ' cherries' end return result end -- Iterating over args, used like: {{#invoke:BananasArgs|custom_fruit|pineapples=10|kiwis=5}} function p.custom_fruit(frame) local result = 'I have:' for name, value in pairs(frame.args) do result = result .. ' ' .. value .. ' ' .. name end return result end -- Iterating over args with separate mandatory args -- Used like: {{#invoke:BananasArgs|custom_fruit_2|Fred|pineapples=10|kiwis=5}} function p.custom_fruit_2(frame) local name = frame.args[1] local result = name .. ' has:' for name, value in pairs(frame.args) do if name ~= 1 then result = result .. ' ' .. value .. ' ' .. name end end return result end return p
Summary:
Please note that all contributions to Stockhub may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Stockhub:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Templates used on this page:
Module:Sandbox/Davykamanzi
(
edit
)
Module:Sandbox/Davykamanzi/doc
(
edit
)