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

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