Help for this page

Select Code to Download


  1. or download this
    perl -MB::Deparse -e"foo()"
    
  2. or download this
    perl -e"use B::Deparse; foo()"
    
  3. or download this
    >perl -MO=Deparse -MB::Deparse -e"foo()"
    use B::Deparse;
    foo();
    -e syntax OK
    
  4. or download this
    >perl -MO=Deparse -e"foo()"
    foo();
    ...
                UNOP (0x1929980) null [17]
                    PADOP (0x19299a0) gv  GV (0x182a00c) *foo
    -e syntax OK