Help for this page

Select Code to Download


  1. or download this
    my %keys = (A => "b");
                -    ---
                1     2     List has two items
    
  2. or download this
    my %keys = A => "b";
    ------------    ---
         1           2      List still there without parens
    
  3. or download this
    foreach ($x) { }     @a = @b;     f $x;
             ^^          ^^   ^^        ^^
    ...
    ^^^^^^      ^^   ^^^^^^^^
     list      list  list value
    literal   value  (from list literal)