Jump to content

Module:Sandbox/SunloungerFrog

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by SunloungerFrog (talk | contribs) at 13:07, 26 November 2024. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
--test

local p = {}
p.fox = function(frame)
	local args = frame.args
	local out = 'A quick brown fox jumps over the lazy dog'
	-- some code here
	
	return out
end

p.jugs = function(frame)
	local args = frame.args
	local out = 'Pack my box with five dozen liquor jugs'
	-- some code here
	
	return out
end

-- 29956455

p.petsc = function(frame)
    local http=require 'mw.ext.externalData'
    local results=mw.ext.externalData.getExternalData 'https://petscan.wmflabs.org/?psid=29914029&format=wiki'
    return results
end

return p