Help for this page

Select Code to Download


  1. or download this
    my @a = qw( 1 2 3 );
    print $#a + 1, $/;              # 3
    ...
    print $a, $/;                   # ARRAY(0x1ab272c)
    printf "0x%x == %d$/", $a, $a;  # 0x1ab272c == 27993900
    
  2. or download this
    This is perl, v5.6.1 built for MSWin32-x86-multi-thread