Help for this page

Select Code to Download


  1. or download this
    foreach $item (sort @items) {
            @tmp= split (/!/, $item, 16);
    ...
            }
    }
    
  2. or download this
    open (FILE, "student.data");
    while (defined ($line = <FILE>)) {
    ...
            }
    }
    close (FILE);
    
  3. or download this
    $students = [
                 [
    ...
                  blah, blah, blah..
                 ]
               ];