Help for this page

Select Code to Download


  1. or download this
    @list1 = ("one","two","three","four");
    @list2 = ("four","three","two","one");
    $name = "list1";
    
  2. or download this
    @list1 = ("one","two","three","four");
    @list2 = ("four","three","two","one");
    ...
    foreach $item (@{$list_ref}) {
        print "$item\n";
    }