Special:Badtitle/NS828:Test

From the Portal Wiki
Revision as of 04:10, 30 December 2012 by Lagg (talk | contribs)
Jump to navigation Jump to search

local p = {} local cheese = {}

function cheese.burger(a)

   local imgonnabe = 
   for i = 0, #a.args do
       imgonnabe = imgonnabe .. ' ' .. a.args[i]
   end
   return c

end p.apocolypse = cheese.burger

function p.ohai(names)

   return 'OHAI ' .. names.args[1] .. ', from ' .. names.args[2]

end

function p.ohai2(params)

   local sender = params.args.sender
   local recipient = params.args.recipient
   if sender == nil then
       return 'OHAI ' .. recipient .. ', from mysterious manne'
   elseif recipient == nil then
       return 'Hello world, from ' .. sender
   else
       return 'OHAI ' .. recipient .. ', from ' .. sender
   end

end return p