- No built in support for private methods - annoying. Sure, there are hacks like my $methodref = sub {..., but this makes calling methods clunky. I realize that Perl's philosopy is that there' no real need for private methods - but those DO have their uses...
- Only now I notice how annoying the whole $self-> thing is. It's like calling everything through this in C++. For instance, in the simulator, to access the rA register, I must now do $self->rA. To access rI6, I must do $self->rI->[6], etc. This is really inconvenient !
Funny, I'm not usually an OO proponent - I believe that the best tool for the job must always be used, and sometimes this tool is OO. However, once I do use OO in Perl (not too often), I find it not too convenient and natural.