Advertisement
ABaDy1996

challenge

Oct 24th, 2020
2,597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. <?php
  2. $count=10;
  3. $i = 1;
  4. prt: echo abs($i++)."<br>";
  5. if($i<$count and $i!=0) goto prt; elseif($i==$count){ $i=-$count; goto prt; }
  6. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement