Help for this page

Select Code to Download


  1. or download this
    struct Appt => {
       startTime => '$',
    ...
       appts => '@',
       numAppts => '$',
    };
    
  2. or download this
    my @days;
    my $dayCount = 0;
    
  3. or download this
    sub hdl_start
    {
    ...
       }
       $currEle = $elt;
    }
    
  4. or download this
    # Get the number of appointments
    my $numAp = $days[$dayCount]->numAppts;
    ...
    
    # Insert my new Appt struct into the appts array
    $days[$dayCount]->appts[$numAp] = $temp;