Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my lua program, i want to stop and ask user for confirmation before proceeding with an operation. I'm not sure how to stop and wait for user input, how can it be done?

share|improve this question

5 Answers

up vote 8 down vote accepted

Take a look at the io library, which by default has standard-input as the default input file:

http://www.lua.org/pil/21.1.html

share|improve this answer
local answer
repeat
   io.write("continue with this operation (y/n)? ")
   io.flush()
   answer=io.read()
until answer=="y" or answer=="n"
share|improve this answer

Ive worked with code like this. I will type this in a way it will work:

Io.write("continue with this operation (y/n)?")
Answer=io.read()
If answer=="y" then
   (put what you want it to do if you say y here)
Elseif answer=="n" then
   (put what you want to happen if you say n)
End
share|improve this answer

I use:

     print("Continue (y/n)?")
re = io.read()
if re == "y" or "Y" then
    (Insert stuff here)
elseif re == "n" or "N" then
    print("Ok...")
end
share|improve this answer

try to use folowing code

m=io.read() if m=="yes" then (insert functions here) end

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.