mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-13 20:26:34 +08:00
10 lines
262 B
Lua
10 lines
262 B
Lua
|
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"))
|