Help for this page

Select Code to Download


  1. or download this
    print 'Hit enter when done: ';
    <>;
    exit;
    
  2. or download this
    print "Type input (hit just enter when done):\n";
    while (<>) {
    ...
        last unless length;
        # validate/store input here
    }