Attributes
Learn about the metadata attached to the Perl variables and functions.
We'll cover the following...
Named entities in Perl—variables and functions—can have additional metadata attached in the form of attributes. These attributes are arbitrary names and values used with certain types of
Declaration of attributes
Attribute declaration syntax is awkward, and using attributes effectively is more art than science. Most programs never use them, but they offer clarity and maintenance benefits when used well.
A simple attribute is a colon-preceded identifier attached to a declaration:
my $fortress
...