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