« Module:Script » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
| Ligne 25 : | Ligne 25 : | ||
function p:main(frame) | function p:main(frame) | ||
local script = Script:new(frame.args[1], frame.args[2]) | if frame.args then | ||
local script = Script:new(frame.args[1], frame.args[2]) | |||
return script:build() | |||
else | |||
return "Args does not exist" | |||
end | |||
end | end | ||
return p | return p | ||