Help for this page

Select Code to Download


  1. or download this
    my $carp;
    *SomePackage::carp = sub { $carp = join '', @_ };
    
  2. or download this
    $ perl -e '*::foo = sub{3};print foo()'
    3
    
  3. or download this
    $ perl -e 'sub foo(){2};*::foo=sub(){3};print foo()'