Help for this page

Select Code to Download


  1. or download this
    @a = (1,2,4,6,8);
    $a = @a;
    print $a;
    
  2. or download this
    %a = (a=>1,b=>2,c=>4,d=>6,e=>8);
    $a = %a;
    print $a;