My comments on Perl5 Objects
Not strictly Object Oriented
- Not “real” inheritance (use @ISA)
- Can not hide data (no private data)
- No real datatypes, typically uses hash arrays
- No difference on class and instance methods
Methods are regular Perl functions, instance pointer passed as first argument