Help for this page

Select Code to Download


  1. or download this
    $ perl -wMstrict -MO=Deparse
    sub find_symbol {
    ...
    sub find_symbol {
        'got'->I('here'->to('today'));
    }
    
  2. or download this
    $ perl -wMstrict -MO=Deparse -e 'sub x { foo bar }'
    BEGIN { $^W = 1; }
    ...
    sub x {
        'bar'->foo('baz'->quz('bleep'));
    }