From c2f154183be823b3ec4c2226ca0bb1ef2cd61689 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 22 Oct 2019 02:40:39 +1100 Subject: [PATCH] AP_Scripting: add a hello world example --- libraries/AP_Scripting/examples/hello_world.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 libraries/AP_Scripting/examples/hello_world.lua 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