Module:Jcgoble3/parameterTest

There are no reviewed versions of this page, so it may not have been checked for adherence to standards.

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

local p = {}
function p.test(frame)
    status = {}
    for x in frame.args.Dalton:gmatch( "([^+]+)" ) do
        status[#status+1] = x
    end
    return status[3]
end
return p