Help for this page

Select Code to Download


  1. or download this
    # Bad code. Don't copy
    while(<>) {
    ...
        my($val)=$1;
        # do something with $val.
    }
    
  2. or download this
    while(<>) {
        my($val);
    ...
    
        # Do something with $val.
    }