Help for this page

Select Code to Download


  1. or download this
    $h{foo} = 'a';
    $h{bar} = 'b';
    $h{baz} = 'c';
    
    is(join(' ', values(%h)), "a b c");
    
  2. or download this
    $a[2] = 'a';
    $a[0] = 'b';
    $a[1] = 'c';
    
    is("@a", "a b c");