Help for this page

Select Code to Download


  1. or download this
    C:\Users\Tux>perl -V:ptrsize
    ptrsize='4';
    ...
    nvsize='8';
    
    C:\Users\Tux>
    
  2. or download this
    tux > perl -V:ptrsize
    ptrsize='4';
    ...
    tux > perl -V:nvsize
    nvsize='12';
    tux >
    
  3. or download this
    tux > perl5.8.8 -V:ptrsize
    ptrsize='4';
    ...
    tux > perl5.8.8 -V:nvsize
    nvsize='8';
    tux >
    
  4. or download this
    tux > perl -V:ptrsize
    ptrsize='8';
    ...
    tux > perl -V:nvsize
    nvsize='16';
    tux >
    
  5. or download this
    $ perl -V:.*size
    charsize='1';
    ...
    uidsize='4';
    uvsize='8';
    $