Jump to content

Module:Science redirect/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Ahecht (talk | contribs) at 18:29, 31 May 2017 (create framework). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local p = {}

function p.from_alternative_scientific_name(frame)
	local catText = 'from alternative scientific name'
	local fromText = 'an alternative scientific name of an organism'
	local toText = 'the accepted scientific name'
	return p.main(frame, catText, fromText, toText)
end

function p.main(frame, catText, fromText, toText)
	return true
end

return p