in reply to module problems
package my_mod; BEGIN { our @ISA = 'Exporter'; our @EXPORT_OK = qw( cat ); require Exporter; } sub cat{ print "meeow.\n"; } 1; [download]
use my_mod qw( cat ); cat(); [download]