打开主菜单
首页
随机
登录
设置
关于Akarin
免责声明
Akarin
搜索
查看“模块:沙盒/Shinonome Akebono/S”的源代码
←
模块:沙盒/Shinonome Akebono/S
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看和复制此页面的源代码。
local p = {} local getArgs = require('Module:Arguments').getArgs function p.hello() return "Hello world!" end function p.lang(frame) local args=getArgs(frame) local text=args[1] local lang=args[2] local span=mw.html.create('span') :attr('lang',lang) :wikitext(text) return span end local function qp(a,b,c) local ans=1 local base=a local exp=b while exp>0 do if exp%2==1 then ans=ans*base%c end base=base*base%c exp=(exp-(exp%2))/2 end return ans end function p.rand(frame) local prime=0x125E591 local args=getArgs(frame) local bound=args[1] local time=math.modf(os.time()*math.random())%prime local pert=3254518517%prime pert=qp(qp(pert,time,prime),qp(time,pert,prime),prime) return pert%bound end return p
该页面使用的模板:
模块:沙盒/Shinonome Akebono/S/doc
(
查看源代码
)
返回至
模块:沙盒/Shinonome Akebono/S
。