in reply to Re^2: problem referencing global variable in self-written module
in thread problem referencing global variable in self-written module
package Fleece; use strict; use warnings; use Exporter; our @ISA = 'Exporter'; our @EXPORT_OK = qw( $fleece ); our $fleece = "white as snow.\n"; 1;
Tested.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: problem referencing global variable in self-written module
by yburge (Acolyte) on Jun 09, 2006 at 20:26 UTC | |
by ikegami (Patriarch) on Jun 09, 2006 at 20:53 UTC |