今天是2024年11月26日 第48周 星期二

代人,时大变了。

我们生活在大地上,但我们的梦想超越天空。

“模块:沙盒/Shinonome Akebono/S”的版本间的差异

来自Akarin
跳到导航 跳到搜索
第1行: 第1行:
 
local p = {}
 
local p = {}
  
function p.hello()
+
local getArgs = require('Module:Arguments').getArgs
    return "Hello, world!"
+
 
 +
function p.hello(frame)
 +
   local args=getArgs(frame)
 +
   local col=args[1]
 +
   local text=args[2]
 +
    return "<span style=\"color:" .. col .. ";\">" .. text .. "</span>"
 
end
 
end
  
 
return p
 
return p

2020年7月8日 (三) 20:14的版本

50px 模块文档[创建]
local p = {}

local getArgs = require('Module:Arguments').getArgs

function p.hello(frame)
    local args=getArgs(frame)
    local col=args[1]
    local text=args[2]
    return "<span style=\"color:" .. col .. ";\">" .. text .. "</span>"
end

return p