<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>https://historia.iafcj.org/index.php?action=history&amp;feed=atom&amp;title=M%C3%B3dulo%3AExample</id>
	<title>Módulo:Example - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="https://historia.iafcj.org/index.php?action=history&amp;feed=atom&amp;title=M%C3%B3dulo%3AExample"/>
	<link rel="alternate" type="text/html" href="https://historia.iafcj.org/index.php?title=M%C3%B3dulo:Example&amp;action=history"/>
	<updated>2026-04-08T14:19:15Z</updated>
	<subtitle>Historial de revisiones de esta página en la wiki</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://historia.iafcj.org/index.php?title=M%C3%B3dulo:Example&amp;diff=130119&amp;oldid=prev</id>
		<title>UriMacías: Página creada con «local p = {};     --All lua modules on Wikipedia must begin by defining a variable                      --that will hold their externally accessible functions.…»</title>
		<link rel="alternate" type="text/html" href="https://historia.iafcj.org/index.php?title=M%C3%B3dulo:Example&amp;diff=130119&amp;oldid=prev"/>
		<updated>2021-02-15T19:50:48Z</updated>

		<summary type="html">&lt;p&gt;Página creada con «local p = {};     --All lua modules on Wikipedia must begin by defining a variable                      --that will hold their externally accessible functions.…»&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {};     --All lua modules on Wikipedia must begin by defining a variable &lt;br /&gt;
                    --that will hold their externally accessible functions.&lt;br /&gt;
                    --Such variables can have whatever name you want and may &lt;br /&gt;
                    --also contain various data as well as functions.&lt;br /&gt;
&lt;br /&gt;
p.hello = function( frame )     --Add a function to &amp;quot;p&amp;quot;.&lt;br /&gt;
                                --Such functions are callable in Wikipedia&lt;br /&gt;
                                --via the #invoke command.&lt;br /&gt;
                                --&amp;quot;frame&amp;quot; will contain the data that Wikipedia&lt;br /&gt;
                                --sends this function when it runs. &lt;br /&gt;
                                -- 'Hello' is a name of your choice. The same name needs to be referred to when the module is used.&lt;br /&gt;
&lt;br /&gt;
    local str = &amp;quot;Hello World!&amp;quot;  --Declare a local variable and set it equal to&lt;br /&gt;
                                --&amp;quot;Hello World!&amp;quot;.  &lt;br /&gt;
&lt;br /&gt;
    return str    --This tells us to quit this function and send the information in&lt;br /&gt;
                  --&amp;quot;str&amp;quot; back to Wikipedia.&lt;br /&gt;
end  -- end of the function &amp;quot;hello&amp;quot;&lt;br /&gt;
&lt;br /&gt;
function p.hello_to(frame)		-- Add another function&lt;br /&gt;
	local name = frame.args[1]  -- To access arguments passed to a module, use `frame.args`&lt;br /&gt;
							    -- `frame.args[1]` refers to the first unnamed parameter&lt;br /&gt;
							    -- given to the module&lt;br /&gt;
	return &amp;quot;Hello, &amp;quot; .. name .. &amp;quot;!&amp;quot;  -- `..` concatenates strings. This will return a customized&lt;br /&gt;
									 -- greeting depending on the name given, such as &amp;quot;Hello, Fred!&amp;quot;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.count_fruit(frame)&lt;br /&gt;
	local num_bananas = frame.args.bananas -- Named arguments ({{#invoke:Example|count_fruit|foo=bar}}) are likewise &lt;br /&gt;
	local num_apples = frame.args.apples   -- accessed by indexing `frame.args` by name (`frame.args[&amp;quot;bananas&amp;quot;]`, or)&lt;br /&gt;
										   -- equivalently `frame.args.bananas`.&lt;br /&gt;
	return 'I have ' .. num_bananas .. ' bananas and ' .. num_apples .. ' apples'&lt;br /&gt;
										   -- Like above, concatenate a bunch of strings together to produce&lt;br /&gt;
										   -- a sentence based on the arguments given.&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function lucky(a, b) -- One can define custom functions for use. Here we define a function 'lucky' that has two inputs a and b. The names are of your choice.&lt;br /&gt;
	if b == 'yeah' then -- Condition: if b is the string 'yeah'. Strings require quotes. Remember to include 'then'.&lt;br /&gt;
		return a .. ' is my lucky number.' -- Outputs 'a is my lucky number.' if the above condition is met. The string concatenation operator is denoted by 2 dots.&lt;br /&gt;
	else -- If no conditions are met, i.e. if b is anything else, output specified on the next line.  'else' should not have 'then'.&lt;br /&gt;
		return a -- Simply output a.&lt;br /&gt;
	end -- The 'if' section should end with 'end'.&lt;br /&gt;
end -- As should 'function'.&lt;br /&gt;
&lt;br /&gt;
function p.Name2(frame)&lt;br /&gt;
	-- The next five lines are mostly for convenience only and can be used as is for your module. The output conditions start on line 20.&lt;br /&gt;
	local pf = frame:getParent().args -- This line allows template parameters to be used in this code easily. The equal sign is used to define variables. 'pf' can be replaced with a word of your choice.&lt;br /&gt;
	local f = frame.args -- This line allows parameters from {{#invoke:}} to be used easily. 'f' can be replaced with a word of your choice.&lt;br /&gt;
	local M = f[1] or pf[1] -- f[1] and pf[1], which we just defined, refer to the first parameter. This line shortens them as 'M' for convenience. You could use the original variable names.&lt;br /&gt;
	local m = f[2] or pf[2] -- Second shortened as 'm'.&lt;br /&gt;
	local l = f.lucky or pf.lucky -- A named parameter 'lucky' is shortend as l. Note that the syntax is different from unnamed parameters.&lt;br /&gt;
	if m == nil then -- If the second parameter is not used.&lt;br /&gt;
		return 'Lonely' -- Outputs the string 'Lonely' if the first condition is met.&lt;br /&gt;
	elseif M &amp;gt; m then -- If the first condition is not met, this line tests a second condition: if M is greater than m.&lt;br /&gt;
		return lucky(M - m, l) -- If the condition is met, the difference is calculated and passed to the the self defined function along with l. The output depends on whether l is set to 'yeah'.&lt;br /&gt;
	else&lt;br /&gt;
		return 'Be positive!'&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p    --All modules end by returning the variable containing their functions to Wikipedia.&lt;br /&gt;
			-- Now we can use this module by calling {{#invoke: Example | hello }},&lt;br /&gt;
			-- {{#invoke: Example | hello_to | foo }}, or {{#invoke:Example|count_fruit|bananas=5|apples=6}}&lt;br /&gt;
			-- Note that the first part of the invoke is the name of the Module's wikipage,&lt;br /&gt;
			-- and the second part is the name of one of the functions attached to the &lt;br /&gt;
			-- variable that you returned.&lt;br /&gt;
			-- The &amp;quot;print&amp;quot; function is not allowed in Wikipedia.  All output is accomplished&lt;br /&gt;
			-- via strings &amp;quot;returned&amp;quot; to Wikipedia.&lt;/div&gt;</summary>
		<author><name>UriMacías</name></author>
	</entry>
</feed>