Help for this page

Select Code to Download


  1. or download this
    perl -we 'sub f { sub { } }; $x = f(); $y = f(); warn "$x $y";'
    
  2. or download this
    perl -we 'sub f { my $t; sub { $t } }; $x = f(); $y = f(); warn "$x $y
    +";'