Modul:Test: Unterschied zwischen den Versionen

Aus STA Dokumentationsplattform
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „mw.wikibase.getLabel( 'Q2' )“)
Zeile 1: Zeile 1:
mw.wikibase.getLabel( 'Q2' )
+
local p = {};
 +
 
 +
p.hello = function( frame )
 +
  local str = "Hello World!"
 +
  return str
 +
end
 +
 
 +
function p.hello_to(frame)
 +
  local name = frame.args[1]
 +
  return "Hello, " .. name .. "!"
 +
end
 +
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
 +
 
 +
return p

Version vom 20. Mai 2020, 16:51 Uhr

Die Dokumentation für dieses Modul kann unter Modul:Test/Doku erstellt werden

local p = {}; 

p.hello = function( frame ) 
  local str = "Hello World!" 
  return str
end

function p.hello_to(frame)
  local name = frame.args[1]
  return "Hello, " .. name .. "!" 
end
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

return p