dhable has asked for the wisdom of the Perl Monks concerning the following question:
Later on in the program, I want to make a decision about the parameters, so I created the following if statment:# Because of my C++ background use constant PROJECT => $ARGV[0]; use constant ARCHIVE => $ARGV[1]; # debuggging print "PROJECT value = " . PROJECT . "\n"; print "ARCHIVE value = " . ARCHIVE . "\n";
Without specifying an ARCHIVE name, I would expect the script to die. It doesn't. So I started reading my trust Camel book on use constant. It said that constant is evaluated at compile time. That makes a lot of sense but my debug output shows:if( ARCHIVE eq "") { warn( "No archive file was supplied.\n"); exit 1201; }
Why is perl able to set the PROJECT value, but can't work with the lack of an ARCHIVE value? Is this an error with my copy of Perl (ActiveState 5.6.1)?PROJECT value = P:\Software ARCHIVE value =
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Invalid use of constant pragma?
by mikeB (Friar) on Nov 29, 2001 at 01:42 UTC | |
by Fastolfe (Vicar) on Nov 29, 2001 at 09:22 UTC | |
by mikeB (Friar) on Nov 29, 2001 at 20:50 UTC | |
by dhable (Monk) on Nov 29, 2001 at 02:28 UTC | |
by mikeB (Friar) on Nov 29, 2001 at 02:36 UTC | |
by dhable (Monk) on Nov 29, 2001 at 02:44 UTC | |
|
Re: Invalid use of constant pragma?
by Vavoom (Scribe) on Nov 29, 2001 at 03:06 UTC | |
|
Re: Invalid use of constant pragma?
by runrig (Abbot) on Nov 29, 2001 at 03:03 UTC | |
|
(tye)Re: Invalid use of constant pragma?
by tye (Sage) on Nov 29, 2001 at 03:05 UTC |