Help for this page

Select Code to Download


  1. or download this
    package Wrong; *{'Right::new'} = sub { ... SUPER ... };
    
  2. or download this
    package Wrong; sub Right::new { ... SUPER ... }
    
  3. or download this
    package Right; sub new { ... SUPER ... }
    
  4. or download this
    package Wrong; sub Right::new { package Right; ... SUPER ... }