Help for this page

Select Code to Download


  1. or download this
    # perl -MO=Deparse,-p -e 'tied( sub {}->() )'
    tied({sub {
    ...
    }
    }->());
    -e syntax OK
    
  2. or download this
    tied(
      {
        sub {}
      }->()
    );
    
  3. or download this
    <c>
    tied(
    ...
        sub {}
      )->()
    );