Help for this page

Select Code to Download


  1. or download this
    package X;
    use strict;
    ...
    
    my $y = Y->new;
    1;
    
  2. or download this
    package Y;
    use Moose;
    
    sub DEMOLISH {}
    1;
    
  3. or download this
    use strict;
    use X;
    print "done\n";