summaryrefslogtreecommitdiffstats
path: root/doc/examples/mobile/lua_helloworld.lua
blob: fd5abccc9d7a372ba88213dbd1977a93f18a776b (plain)
1
2
3
4
5
6
7
8
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");