Help for this page

Select Code to Download


  1. or download this
        $ perl -MO=Deparse,-p -e 'sub foo {} sub bar {} bar & foo()'
        sub foo {
    ...
        }
        bar(&foo());
        -e syntax OK
    
  2. or download this
        perl -MO=Deparse,-p -e 'sub foo {} sub bar {} &bar & &foo()'
        sub foo {
    ...
        
        }
        (&bar & &foo());