Help for this page

Select Code to Download


  1. or download this
    # simple array
    push @simple_array, $array_element;
    ...
    push @{ $simple_arrayref }, $array_element;
    # complex array
    push @{ $complex_arrayref }, $array_element;
    
  2. or download this
    $self->{"Course(s)"}=[<STDIN>]
    
  3. or download this
    while (<>) {
        chomp;
        push @array, $_;
    }