mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-13 23:03:08 +00:00
Fixed so standard libraries can be used, added an example script, and fixed so all hf.mf-ops can be called
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
local foo = "This shows how to use some standard libraries"
|
||||
print(foo)
|
||||
local answer
|
||||
repeat
|
||||
io.write("Continue with this operation (y/n)? ")
|
||||
io.flush()
|
||||
answer=io.read()
|
||||
until answer=="y" or answer=="n"
|
||||
local x = "Ok then, %s"
|
||||
print (x:format("whatever"))
|
||||
Reference in New Issue
Block a user