jerrygarciuh has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; use warnings; use diagnostics; @words = qw(baloney has a first name); open (TEXTFILE,">>/menu.txt") || die "where's the damn file? : $!"; print TEXTFILE @words; close (TEXTFILE) || die ("close damn you : $!";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Error: requires explicit package name
by runrig (Abbot) on Sep 12, 2001 at 23:23 UTC | |
|
Re: Error: requires explicit package name
by acid06 (Friar) on Sep 12, 2001 at 23:17 UTC | |
|
Re: Error: requires explicit package name
by rchiav (Deacon) on Sep 12, 2001 at 23:12 UTC | |
|
Re: Error: requires explicit package name
by RayRay459 (Pilgrim) on Sep 12, 2001 at 23:49 UTC | |
by blakem (Monsignor) on Sep 13, 2001 at 00:16 UTC |