in reply to Re: Using variables declared in a library from other perl scripts
in thread Using variables declared in a library from other perl scripts

use EXPORTER; package noname1; our @EXPORT_OK = qw($wibble); our $wibble = 'Hello World'; 1;
You must be on a case-insensititve file system. It should be "use Exporter;". But "Exporter" does nothing in your code. It would work exactly the same without "use Exporter;" and without setting "@EXPORT_OK".

What happened? Your replies are usually more to the point.

Anno

Replies are listed 'Best First'.
Re^3: Using variables declared in a library from other perl scripts
by GrandFather (Saint) on Apr 19, 2007 at 19:06 UTC

    Late afternoon brain fade and rush due to demands of $work are the only excuse I can give. :(

    Node updated.


    DWIM is Perl's answer to Gödel