mirror of https://github.com/ArduPilot/ardupilot
10 lines
159 B
Lua
10 lines
159 B
Lua
|
-- Description: Test require()ing another script
|
||
|
local top = {}
|
||
|
|
||
|
-- create some test functions to call
|
||
|
function top.call_fn()
|
||
|
return "top"
|
||
|
end
|
||
|
|
||
|
return top
|