repo.or.cz
/
legacy-proxmark3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added info to changelog about bootroom update
[legacy-proxmark3.git]
/
client
/
scripts
/
test.lua
blob
76adc9850ec8f3ef12a4add40929ccd4b71303de
1
local
foo
=
"This shows how to use some standard libraries"
2
print
(
foo
)
3
local
answer
4
repeat
5
io
.
write
(
"Continue with this operation (y/n)? "
)
6
io
.
flush
()
7
answer
=
io
.
read
()
8
until
answer
==
"y"
or
answer
==
"n"
9
local
x
=
"Ok then, %s"
10
print
(
x
:
format
(
"whatever"
))