X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/806dc07542ab956f376811e59b4dca8f9c98af89..5a92cb525e0d7bfbf8bb005c3bf71ebdb6584959:/client/scripts/test.lua?ds=sidebyside diff --git a/client/scripts/test.lua b/client/scripts/test.lua new file mode 100644 index 00000000..76adc985 --- /dev/null +++ b/client/scripts/test.lua @@ -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")) \ No newline at end of file