fork download
  1. #!/usr/bin/perl
  2. $a=0;
  3. do
  4. {
  5. print "$a,";
  6. $a=$a+5;
  7. }
  8. while($a<100);
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
0,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,