in reply to Re: How to pass array as a reference from one perl file to other
in thread How to pass array as a reference from one perl file to other

You have a typo: my $array = ( 1, 2, 3, 4); should be my $array = [ 1, 2, 3, 4 ];