adding missing help.lua file from last commit.

This commit is contained in:
Paul XPS 2018-12-01 10:15:19 -06:00
parent 54e3e6bf3c
commit 73ae2401b8
1 changed files with 26 additions and 0 deletions

26
host/scripts/app/help.lua Normal file
View File

@ -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