Help for this page

Select Code to Download


  1. or download this
    C:\ce3\bin>perl -w
    my @list = qw(0 1 2 3 4 5);
    ...
    }
    ^Z
    1 2 3 4 5
    
  2. or download this
    C:\ce3\bin>perl -w
    use strict;
    ...
    }
    ^Z
    0 1 2 3 4 5
    
  3. or download this
    C:\ce3\bin>perl -w
    my @list = qw(0 1 2 3 4 5);
    ...
    }
    ^Z
    1 2 3 4 5