Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Returning information from BEGIN

by arturo (Vicar)
on Feb 21, 2001 at 19:58 UTC ( [id://59947]=note: print w/replies, xml ) Need Help??


in reply to Returning information from BEGIN

You can export a symbol from BEGIN by the old use vars qw($foo); trick:

#!/usr/bin/perl -w BEGIN { use vars qw($foo); $foo = 'bar'; } use strict; print "$foo\n";

Does that help? Are you just trying to suppress the "BEGIN failed" message that pops up if you put the die in the BEGIN block? The use vars will help with that:

BEGIN { use vars qw($err); $err = $ENV{SM} ? 0 : 1; push @INC, "$ENV{SM}/../bin" unless $err; } die "Environment variable SM not set!\n" if $err; require 'error.pm';

Philosophy can be made out of anything. Or less -- Jerry A. Fodor

Replies are listed 'Best First'.
Re: Re: Returning information from BEGIN
by leons (Pilgrim) on Feb 21, 2001 at 20:02 UTC
    Thanks a lot arturo. And yep, that was exactly what I was
    trying to do ;-)

    Bye, Leon

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://59947]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (2)
As of 2024-04-20 06:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found