From Afropedia.world
Jump to: navigation, search
imported>Kofi
imported>Kofi (1 revision)
m
 
(No difference)

Latest revision as of 15:29, 21 November 2014

-- This module implements Script error: No such module "Break".

local p = {}

function p.main( frame )

   local num = frame.args[1] or 
   num = tonumber( num )
   if not num or num < 1 or math.floor( num ) ~= num or num == math.huge then
       num = 1
   end
   return mw.ustring.rep( '
', num )

end

return p