User:Imahero/test: Difference between revisions

From Heroes 3 wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
{{#invoke:imahero/test|arrow|direction=left}}
{{#invoke:imahero/test|arrow|direction=left}}
{{#invoke:imahero/test|arrow|direction=right}}
{{#invoke:imahero/test|arrow|direction=right}}
<syntaxhighlight lang="lua" line='line'>
local p = {} --p stands for package
function p.hello( frame )
    return "Hello, world!"
end
return p
</syntaxhighlight>

Revision as of 14:39, 18 March 2021

Lua error in Module:Imahero at line 4: attempt to concatenate field 'name' (a nil value).

User:Imahero/test

simple

↑ ↓ ← →

local p = {} --p stands for package

function p.hello( frame )
    return "Hello, world!"
end

return p