mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 23:48:31 -04:00
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
|