in reply to Understanding using external program data
And then the Lookup.pm module (I usually capitalize modules):#!/usr/bin/perl use strict; use warnings; use Lookup; use Data::Dumper; print Dumper \%devel_table;
package Lookup; use strict; use warnings; require Exporter; our @EXPORT = qw(%devel_table); our @ISA = qw(Exporter); our %devel_table = ("Townhomes West" => "M", #lots more values in here, of course "Winding Creek Family" => "H", "Dayton Lane Gardens" => "H"); 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Understanding using external program data
by NovMonk (Chaplain) on Feb 14, 2007 at 16:25 UTC | |
by Anno (Deacon) on Feb 14, 2007 at 20:03 UTC |