package check; use strict; require Exporter; our @ISA = ('Exporter'); our @EXPORT = ( 'one','two', 'three', 'four', 'five', 'six' ); our $VERSION=1.10; sub one { return 'yes'; } sub two { return 'two'; } sub three { return 'three'; } sub four { return 'four'; } sub five { return 'five'; } sub six { return 'six'; } 1;