mirror of
				https://github.com/RfidResearchGroup/proxmark3.git
				synced 2025-10-31 08:26:15 +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")) |