You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
534 B
Raku

sub desc_sort_subject {
$b <=> $a; # Numeric sort descending
}
sub asc_sort_subject{
$a <=> $b; # Numeric sort ascending
}
%courses = (
"101" => "I",
"221" => "L",
"300" => "A",
"102" => "P",
"103" => "P",
"200" => "L",
);
foreach $key (sort asc_sort_subject(keys(%courses))) {
printf "\t%-5d%s\n", $key, $courses{"$key"};
}
foreach $key (sort desc_sort_subject(keys(%courses))) {
printf "\t%-5d%s\n", $key, $courses{"$key"};
}