Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use Class::Privacy;
    ...
    my $f = new Foo;
    CORE::bless $f, 'Foo';
    $f->_violate_privacy; # works
    
  2. or download this
    sub _explode {
     die 'I decided to blow up';
    }