Advertisement
AnotherTest

TBS: While Loops

Sep 14th, 2011
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. ?i = 0;
  2. _while(i < 15) {
  3. !out(~"We will output this 15 times in about 30 seconds.");
  4. _if(i == 14) {
  5. !out(~"Last one!\n");
  6. }
  7. _sleep(2000);
  8. i = i + 1;
  9. }
  10. _die();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement