🐪 Perl Object-Oriented Programming (OOP)

Perl handles OOP with packages, bless, and method calls via ->. No class keyword here — just pure Perl madness.

🖥️ Example: Defining and Using a Class

Output will appear here...
💡 Tip: In Perl, the bless function associates a reference (usually a hash) with a package to make it an object.