User:Imahero/test: Difference between revisions
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
User:Imahero/test
simple
↑ ↓ ← →
local p = {} --p stands for package
function p.hello( frame )
return "Hello, world!"
end
return p