Module:Accreditation

From MassiveCraft Wiki
Revision as of 17:31, 26 August 2015 by Ryciera (talk | contribs) (Created page with "local p = {} writers = "" artists = "" processors = "" function p.info(frame) writers=frame.args.Writers artists=frame.args.Artists processors=frame.args.Processors...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Accreditation/doc

local p = {}

writers = ""
artists = ""
processors = ""

function p.info(frame)
	
	writers=frame.args.Writers
	artists=frame.args.Artists
	processors=frame.args.Processors
	
	local example = "an example string"
		for i in string.gmatch(example, "%S+") do
		  print(i)
		end

end

return p