#!/usr/bin/perl package my_module; require Exporter; our @ISA = qw/Exporter/; our @EXPORT = qw/@my_var change_var/; our @my_var = (1..10); sub change_var{ @my_var = (20..30); } 1;