fork download
  1. #!/usr/bin/perl
  2. $a=10;
  3. until ($a<1)
  4. {
  5. print "$a,";
  6. $a=$a-1;
  7. }
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
10,9,8,7,6,5,4,3,2,1,