in reply to Re: Using a paramter value to call a module
in thread Using a paramter value to call a module
sub require_if_present { my $mod = shift; eval { require $mod; return 1; } return 0 if $@; }
pike
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Using a paramter value to call a module
by ihb (Deacon) on Feb 07, 2003 at 15:04 UTC | |
|
Re: Re: Re: Using a paramter value to call a module
by hawtin (Prior) on Feb 08, 2003 at 10:07 UTC |