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