Help for this page

Select Code to Download


  1. or download this
    [Athlon 4000+]
    price=300 euro
    ...
    price=200 euro
    produce=Intel
    description=Slower
    
  2. or download this
    %hash(
    "item"=>"Athlon 4000+",
    ...
    "produce"="AMD"
    "description="Fast");
    etc...
    
  3. or download this
    #!/usr/bin/perl
    use warnings;
    ...
            push @descriptions, $1;
        }
    }
    
  4. or download this
    my %hash = (
        "art"          => ( shift @art ),
    ...
        "price"        => ( shift @prices ),
        "descriptions" => ( shift @descriptions) 
    );