Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        my ($coursename, $building, $room, $day, $time, $name) = 
    ...
        push @time, $time;
        push @name, $name;
    }
    
  2. or download this
    my @course_info;
    while (<>) {
    ...
            name => $name,
        };
    }
    
  3. or download this
    my %course_info;
    while (<>) {
    ...
            name => $name,
        };
    }