in reply to Exporting namespace elements when package is in same file as main

BEGIN { package Whatever; $INC{'Whatever.pm'} = __FILE__; use Exporter 'import'; @EXPORT_OK = qw< ... >; ... } package main; use Whatever qw< ... >; ...

- tye        

  • Comment on Re: Exporting namespace elements when package is in same file as main (BEGIN)
  • Download Code