Help for this page

Select Code to Download


  1. or download this
    $student1->drop_courses(["C++"]);
    $student1->drop_courses(["C++", "Bio"]);
    
  2. or download this
    sub drop_courses { # drop_courses(["",]);
      my $self=shift;
      my $del_cour = shift; # $del_cour = ["Java"];
    ...
    print "After dropping: ", 
      join (", ", @{$self->{'Course(s)'}->{'cour'}}), "\n";
    }