Help for this page

Select Code to Download


  1. or download this
    my @student_info = ("001","John","002","Mary","003","Tom");
    my %hash = @student_info;
    
    say join ", ", sort keys %hash;
    
  2. or download this
    my @student_info = ("001","John","002","Mary","003","Tom");
    my %name_hash = @student_info;
    ...
    
        # do output here
    }