Guest User

Untitled

a guest
Apr 14th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var teller:uint = 0;
  2. function getTall(){
  3.     return (Math.random()*11);
  4. }
  5. while(teller<10){
  6.     var test:uint = getTall();
  7.     trace(test);
  8.     teller++;
  9. }
Add Comment
Please, Sign In to add comment