Difference between revisions of "Module:Sandbox02"

From Rhizome Artbase
(Created page with "local p = {} function p.ftn01(frame) return "this is ftn01, created April 27, 2016.\n" end function p.ftn02(frame) return "this is ftn02, created April 27, 2016.\n"...")
 
Line 7: Line 7:
 
function p.ftn02(frame)
 
function p.ftn02(frame)
 
     return "this is ftn02, created April 27, 2016.\n"
 
     return "this is ftn02, created April 27, 2016.\n"
 +
end
 +
 +
function p.ftn03( frame )
 +
    local fx = frame.args[1]
 +
    return 'this is '.. fx ..' ,created April 27, 2016.\n'
 
end
 
end
  
 
return p
 
return p

Revision as of 22:31, 27 April 2016

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

local p = {}

function p.ftn01(frame)
    return "this is ftn01, created April 27, 2016.\n"
end

function p.ftn02(frame)
    return "this is ftn02, created April 27, 2016.\n"
end

function p.ftn03( frame )
    local fx = frame.args[1]
    return 'this is '.. fx ..' ,created April 27, 2016.\n'
end

return p