fork download
  1. #!/usr/bin/perl
  2.  
  3. $foo = "3d8";
  4. print "$foo\n";
  5. $foo++;
  6. print "$foo\n";
  7. $foo++;
  8. print "$foo\n";
  9. $foo++;
  10. print "$foo\n";
Success #stdin #stdout 0s 6000KB
stdin
Standard input is empty
stdout
3d8
4
5
6