Help for this page

Select Code to Download


  1. or download this
    while (<FILE>) {$somevar .= $_} works but
    while ($somevar .= <FILE>) {} doesn't. (It puts the program in a scary
    + infinite loop)
    
  2. or download this
    while( 1 ) { # do something }