Help for this page

Select Code to Download


  1. or download this
    while (<>) {
      chomp;
      last if /\S/;
    }
    print "You said: $_\n";
    
  2. or download this
    my $in;
    while (local $_ = <>) {
      chomp;
      $in = $_, last if /\S/;
    }
    print "You said: $in\n";