模块:换行处理:修订间差异
来自Gal中文百科
更多操作
无编辑摘要 |
无编辑摘要 |
||
| 第3行: | 第3行: | ||
function p.text( frame ) | function p.text( frame ) | ||
local args = frame.args | local args = frame.args | ||
return 'Hello, world!'..args[ | return 'Hello, world!'..args['变量'] | ||
end | end | ||
return p | return p | ||
2024年4月3日 (三) 09:27的版本
Hello, world!242 55 24 脚本错误:函数“img”不存在。
local p = {}
function p.text( frame )
local args = frame.args
return 'Hello, world!'..args['变量']
end
return p