in reply to Re: Re: What the @#%* lost again!
in thread problem opening and reading from a file
#!/usr/bin/perl use strict; use warnings; open print => "/etc/passwd" or die; print while <print>; __END__
If you replace the => with a comma, the code above won't compile.
Abigail
|
|---|