Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    push @data, { name => "Item C", price => 7.5};
    my @sorted = sort {$a->{price} <=> $b->{price}} @data;
    print join "\n", map {$_->{name}." - ".$_->{price}} @sorted;
    
  2. or download this
    use strict;
    use warnings;
    ...
    
    my @sorted = sort {$a->{price} <=> $b->{price}} @data;
    print join "\n", map {$_->{name}." - ".$_->{price}} @sorted;