پودمان:Pages statistics: تفاوت میان نسخه‌ها

از امامت‌پدیا، دانشنامهٔ امامت و ولایت
جزبدون خلاصۀ ویرایش
جزبدون خلاصۀ ویرایش
خط ۲: خط ۲:


function p.hello( frame )
function p.hello( frame )
     local h = tonumber( tostring(frame:expandTemplate{ title = 'آمار مدخل‌ها' }) )
     local h = tostring(frame:expandTemplate{ title = 'آمار مدخل‌ها' })
     local n = math.abs( 7 )
     local n = tostring(7)  
     return math.abs( h - n )
     return h - n  
end
end


return p
return p

نسخهٔ ‏۲۶ ژوئن ۲۰۱۹، ساعت ۱۲:۲۳


local p = {} -- p stands for package

function p.hello( frame )
    local h = tostring(frame:expandTemplate{ title = 'آمار مدخل‌ها' })
    local n = tostring(7) 
    return h - n 
end

return p