in reply to Re^2: subroutine calls
in thread subroutine calls

No, that's making two arrays (@ISA and @EXPORT) in the package local. You want

package DIVISION; require Exporter; our @ISA = qw( Exporter ); our @EXPORT = qw( divideInteger printer );

And to re-read the docs for Exporter.