Help for this page

Select Code to Download


  1. or download this
    my @x = qw( a b c );
    
  2. or download this
    my @x = 'a' .. 'c';
    
  3. or download this
    perl -MTest::More=no_plan -e'is_deeply [a=>b=>c],[qw(a b c)]'
    perl -MTest::More=no_plan -e'is_deeply [a=>b=>c],["a".."c"]'