Help for this page

Select Code to Download


  1. or download this
    my $x = sub { "test" };  bless $x, "HRM";
    sub HRM::DESTROY { print "bye\n" }
    
  2. or download this
    my $y = eval 'sub {"test"}'; bless $y, "HRM";