我正在创建一个小程序来向我的朋友炫耀......这是我的第一个程序,所以我需要很多帮助。
我的问题:我有文字,一个问题,但是当你输入某行时,我如何做出特定的答案,比如诺亚?到目前为止,这是我的代码...
local background = display.newImage( "white.png" )
local text = display.newText( "Hello!", 25, 65, "Helvetica", 22 )
text:setTextColor( 0, 128, 0 )
local text = display.newText( "What is your name?", 25, 100, "Helvetica", 22 )
text:setTextColor( 0, 128, 0 )
local answer
repeat
io.write("What is your name?")
io.flush()
answer=io.read()
until answer=="Emmy" or answer=="Mom" or answer=="Dad" or answer=="Noah"
我正在试用 Corona SDK,它只是不断重复“你叫什么名字?” 我该怎么办?