Subroutines must typically be predefined (with new sub command) if they are to be accessed with |
subname(list); # or one can use |
&subname(); # as equivalent to subname() |
so that & notation is typically unnecessary |
use packagename qw( NAME1 NAME2 NAME3); # imports routines NAME1 NAME2 NAME3 from package packagename |
Notice qw() is new Perl5 routine to generate quotes around space separated words
|