in reply to die not exiting Application
sub push_report { my $idx = shift; $file= "/tmp/test123"; open(IN, $file) || die "Couldn't open `$file'"; } __END__ Global symbol "$file" requires explicit package name at - line 4. Global symbol "$file" requires explicit package name at - line 5. Global symbol "$file" requires explicit package name at - line 5. Execution of - aborted due to compilation errors.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: die not exiting Application
by andreas1234567 (Vicar) on Apr 16, 2008 at 07:33 UTC | |
|