fork download
  1. $x=0;
  2. while ($x<10)
  3. {
  4. print "$x\n";
  5. $x++;
  6. }
  7.  
Success #stdin #stdout 0s 4596KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5
6
7
8
9