Module:Sandbox/SunloungerFrog
Appearance
--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