11 lines
250 B
Lua
11 lines
250 B
Lua
-- argumentsHelp = "The word recorded here will be displayed on the screen."
|
|
|
|
function onResume()
|
|
local args = aio:getArgs()
|
|
if args == nil then
|
|
ui:showText("args is empty")
|
|
else
|
|
ui:showText("arg1: "..args[1])
|
|
end
|
|
end
|