Help for this page

Select Code to Download


  1. or download this
    use Encapsulation;
    
    sub new {
    ...
    }
    
    1;
    
  2. or download this
    #!/usr/bin/perl
    
    use strict;
    ...
    is $o->foo, 42, "secrets of different classes do not interfere";
    
    ok !defined $o->{secret}, 'cannot reach into objects';