Is Perl module similar to package in java ?
I was going through a File::Find module. It feels like its just one big file. In java, a package consists of various classes, which are completely different files.
Like that, does Perl module contain different files or is it just one file containing numerous subroutines ?
In order to use any functionality, do I need to get complete module in a program and just use a particular subroutine ?
Do I need to create an ionstance of this entire class to use a subroutine ?