Reputation: 101
Im looking for a wait command so I can read the access granted before it goes away. Ive looked everywhere and i found that the wait command worked.. but i cant add a time to it, i can only put wait. this is the first time ive worked with this, im using it because its either this or forth for what im doing, and the way forth works is confusing to me.
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
Upvotes: 3
Views: 3455
Reputation: 11
i am using a TI-basic editor so this might not work but if you type
wait 1
it will wait 1 second
i looked around my calculator options to find this answer.
Upvotes: 0