tl; dr: He says don't export anything, not the default.
long version:
The file :: Find has our @EXPORT = qw(find finddepth); therefore these subnets are exported by default. If we just use the module, and then try to call find its errors, because I did not pass the correct find arguments to it, but find exists.
quentin@workstation :~
Passing a list in a use expression overrides the default values ββand exports only the children you request. An empty list means that no one will be exported, and it will be an error because find does not exist. Such:
quentin@workstation :~ # perl use File::Find (); find(); Undefined subroutine &main::find called at - line 2.
source share