Advertisement
Guest User

Untitled

a guest
Oct 25th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.11 KB | None | 0 0
  1. #!/usr/bin/php
  2. <?php
  3.  
  4. $a="";
  5.  
  6. $a.="a";
  7.  
  8. while(true) {
  9.   printf("\r%d ", strlen($a));
  10.   $a.="a";
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement