Explain the differences between the repeat, repeat-until, and wait-until commands.
Answers
Answered by
0
Answer:
while loops continue on as long as their condition is met. Since wait() always exists, then that condition is met and is true. Therefore the script will loop until that statement is false.
Answered by
0
Answer:
while loops continue on as long as their condition is met. Since wait() always exists, then that condition is met and is true. Therefore the script will loop until that statement is false.
Similar questions