Help for this page

Select Code to Download


  1. or download this
    while ( ... ) {
        unless ( some-condition ) {
    ...
        }
        some-code
    }
    
  2. or download this
    while ( ... ) {
        if ( some-condition ) {
            some-code
        }
    }
    
  3. or download this
    while ( <DATAFILE> ) {
        chomp;
    ...
    
        #do something with $quote, $hours, $minutes, $seconds & $comment
    }