Help for this page

Select Code to Download


  1. or download this
    C:\ce3\bin>perl -w
    my @list = qw(abc2 abc3 abc1 abc0);
    ...
    ^Z
    2cba 3cba 1cba 0cba
    C:\ce3\bin>
    
  2. or download this
    C:\ce3\bin>perl -w
    my @list = qw(abc2 abc3 abc1 abc0);
    ...
    print "@list2";
    ^Z
    abc2 abc3 abc1 abc0