Help for this page

Select Code to Download


  1. or download this
    @resp = <$s>; # expect one line response
    
  2. or download this
    @resp = ();
    while (defined $_ = <$s> and ! /^\s*$/) {
        warn "DEBUG: Got >$_<";
        push @resp, $_;
    };