#!d:\perl\bin\perl.exe use warnings; use strict; package Hello; use Exporter; my @ISA = ('Exporter'); my @EXPORT = ('hello'); sub hello { print "Hello, world\n"; } 1;