Help for this page

Select Code to Download


  1. or download this
      my ($a, $b, $c);
    
  2. or download this
      my ($a, $b, $c) = (0, 1, 2);
    
  3. or download this
      my ($a, $b) = @_;
    
  4. or download this
    for (1 .. $a_whole_lot)
    {
      my ($key, $value) = returnsAnArray ();
    }
    
  5. or download this
      codethatUsesFoo (getValue()) for 1 .. $a_huge_value;