# MODULE
package test
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION);
use Exporter;
$VERSION = 1.00;
@ISA = qw(Exporter);
@EXPORT = qw(%hash); # Symbols to autoexport
@EXPORT_OK = qw(); # Symbols to export by request
%EXPORT_TAGS = (); # Define names for sets of symbols
our %hash;
$hash{tag} = value;
1; # This is required. Do not delete this line!
# SCRIPT
#!perl
use strict;
use test;
print "$_\n" for keys %hash;
|