Help for this page

Select Code to Download


  1. or download this
    until(!defined($_ = <STDIN>) and /exit|quit|(^\s*$)/i) {
    }
    
  2. or download this
    while(<STDIN>){
        last if /exit|quit|(^\s*$)/i;
    }