in reply to Re^2: Object oriented Perl and Java: A brief examination of design.
in thread Object oriented Perl and Java: A brief examination of design.

our %error_dictionary = ...; our %cached_templates = ...; sub get_template { .... check cache or store in cache ... } sub get_error { $error_dictionary{...} ... }

If these were, my lexical, then its hard to peek inside for folks that need to ...

Being our globals, anyone who wants to peek can do so at their own risk, an know to stick with the official api for officialness

one or the other, it doesn't really matter, this is the least important type of implementation detail... but you can't go wrong with openness (our our our)

https://metacpan.org/module/DROLSKY/perl-5.15.6/pod/perlootut.pod, chromatics free book Modern Perl, Moo, Re^3: High level OOP query (internal data)

  • Comment on Re^3: Object oriented Perl and Java: A brief examination of design.
  • Download Code