home *** CD-ROM | disk | FTP | other *** search
/ ftp.cse.unsw.edu.au / 2014.06.ftp.cse.unsw.edu.au.tar / ftp.cse.unsw.edu.au / pub / doc / languages / perl / nutshell / ch7 / nextif < prev    next >
Encoding:
Text File  |  1992-10-18  |  109 b   |  8 lines

  1. while (<>) {
  2.     next if /^#/;
  3.     next if /^$/;
  4.     chop;
  5.     @piggies = split(/,/);
  6.     # Your code here
  7. }
  8.