我正在寻找一个等待命令,这样我就可以在它消失之前读取授予的访问权限。我到处找,我发现等待命令有效..但我无法添加时间,我只能等待。这是我第一次使用这个,我使用它是因为它要么是这个,要么是我正在做的事情,而前进的方式让我感到困惑。
input"Enter Password: "; pass$
realPass$="meow"
if pass$=realPass$ then goto[areTheSame]
goto[areNotTheSame]
[areNotTheSame]
print("access denied")
goto[end]
[areTheSame]
print("access granted")
wait
goto[end]
[end]
cls