diff --git a/libraries/AP_Scripting/examples/hello_world.lua b/libraries/AP_Scripting/examples/hello_world.lua new file mode 100644 index 0000000000..b08db950be --- /dev/null +++ b/libraries/AP_Scripting/examples/hello_world.lua @@ -0,0 +1,3 @@ +-- This script is an example of saying hello + +gcs:send_text(0, "hello, world") -- send the traditional message