From 73ae2401b828624cc2ba32a13ed7b649eb6a489f Mon Sep 17 00:00:00 2001 From: Paul XPS Date: Sat, 1 Dec 2018 10:15:19 -0600 Subject: [PATCH] adding missing help.lua file from last commit. --- host/scripts/app/help.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 host/scripts/app/help.lua diff --git a/host/scripts/app/help.lua b/host/scripts/app/help.lua new file mode 100644 index 0000000..bd76ebe --- /dev/null +++ b/host/scripts/app/help.lua @@ -0,0 +1,26 @@ + +-- create the module's table +local help = {} + +-- import required modules +--local dict = require "scripts.app.dict" + +-- file constants + +-- local functions +local function hex(data) + return string.format("%X", data) +end + + +-- global variables so other modules can use them + + +-- call functions desired to run when script is called/imported + + +-- functions other modules are able to call +help.hex = hex + +-- return the module's table +return help