ardupilot/libraries/AP_Scripting/tests/modules/test/top.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
159 B
Lua
Raw Normal View History

2023-04-04 23:35:20 -03:00
-- Description: Test require()ing another script
local top = {}
-- create some test functions to call
function top.call_fn()
return "top"
end
return top