in reply to Re: What the @#%* lost again!
in thread problem opening and reading from a file
#!/usr/bin/perl use strict; use warnings; open BEGIN, "/etc/passwd" or die; print while <BEGIN>; __END__
The program compiles and runs without problems.
Abigail
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: What the @#%* lost again!
by svsingh (Priest) on Jul 02, 2003 at 21:39 UTC | |
by Abigail-II (Bishop) on Jul 02, 2003 at 22:49 UTC |