what is the procedure to define a user define module in your perl application?
Package Module_name; require Exporter; @ISA = qw(list of base classes); @Export = qw(list of symbols ); #------------code--------------------- #at the end of module 1;