mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-11 09:59:45 +08:00
10 lines
No EOL
262 B
Lua
10 lines
No EOL
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")) |