summaryrefslogtreecommitdiffstats
path: root/doc/examples/mobile/lua_helloworld.lua
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/mobile/lua_helloworld.lua')
-rw-r--r--doc/examples/mobile/lua_helloworld.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/examples/mobile/lua_helloworld.lua b/doc/examples/mobile/lua_helloworld.lua
new file mode 100644
index 00000000..fd5abccc
--- /dev/null
+++ b/doc/examples/mobile/lua_helloworld.lua
@@ -0,0 +1,9 @@
+-- See https://www.lua.org/manual/5.3/ for Lua
+-- See http://ftp.osmocom.org/docs/latest/osmocombb-usermanual.pdf -- Scripting with Lua
+
+-- Standard print and log_* are forwarded to the Osmocom logging framework
+print("Hellp from Lua");
+log_notice("Notice from lua");
+log_debug("Debug from Lua");
+log_error("Error from Lua");
+log_fatal("Fatal from Lua");