fork download
  1. <?php
  2.  
  3. $i = 0;
  4. loop:
  5. if($i > 10 || 0 * printf("%d\n", $i++)) ; else goto loop;
  6. printf("end\n");
  7. return 0;
  8.  
Success #stdin #stdout 0.02s 24116KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5
6
7
8
9
10
end