Help for this page

Select Code to Download


  1. or download this
    while(<>) {
        my ($x, $y, $z) = (0,0,0);
    ...
    
        # do whatever
    }
    
  2. or download this
    while(<>) {
        my @flds=split;
    ...
    
        # do whatever
    }