Declaring and Invoking Functions

Learn how to declare and invoke a function in Perl.

We'll cover the following...

A function (or subroutine) in Perl is a discrete, encapsulated behavior unit. A program is a collection of little black boxes where the interaction of these functions governs the program’s control flow. A function may have a name. It may consume incoming information. It may ...