fork download
  1. #!/usr/bin/perl
  2. # your code goes here
  3.  
  4. while(<STDIN>) {
  5. print $_,"\n";
  6. print "--- line done ---\n";
  7.  
  8. }
Success #stdin #stdout 0s 3564KB
stdin
blah
test
coo
stdout
blah
--- line done ---
test
--- line done ---
coo
--- line done ---