Help for this page

Select Code to Download


  1. or download this
    sub outer {
        my ($x) = @_;
    ...
    
    outer(4);  # Prints 4
    outer(6);  # Prints 4!!!
    
  2. or download this
    sub named { ... }
    
  3. or download this
    BEGIN { *named = sub { ... }; }