test close handler
[scpubgit/TenDotTcl.git] / t / bin / echo.pl
1 #!/usr/bin/env perl
2
3 $|++;
4
5 while (<STDIN>) {
6   exit 0 if $_ eq "DIE\n";
7   print;
8 }