Help for this page

Select Code to Download


  1. or download this
    
    @t_arr2 = ("one", "two", "three");
    ...
        print "$str1->[1]\n";
        print "$str1->[2]\n";
    }
    
  2. or download this
    @t_arr2 = ("one", "two", "three");
    push(@t_arr, [@t_arr2]);
    ...
        print "$str1->[1]\n";
        print "$str1->[2]\n";
    }
    
  3. or download this
    four
    five
    ...
    four
    five
    six
    
  4. or download this
    one
    two
    ...
    four
    five
    six
    
  5. or download this
    #!/usr/bin/perl -w
    use strict;