Perl: Using Packages
Using Packages
#!/usr/bin/perluse Utils;
print "Today's date is: $date\n";
- The use keyword enables us to use functions (and variables) from a module
- To refer to identifiers in the module by saying:Package::subroutine() or$Package::variable