change scripts/ to luascripts/

This commit is contained in:
Philippe Teuwen 2019-08-21 23:17:01 +02:00
commit a8ee33baf4
47 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,18 @@
local reader = require('hf_reader')
local function main(args)
print("WORK IN PROGRESS - not expected to be functional yet")
info, err = reader.waitForTag()
if err then
print(err)
return
end
local k,v
print("Tag info")
for k,v in pairs(info) do
print(string.format(" %s : %s", tostring(k), tostring(v)))
end
return
end
main(args)