Help for this page

Select Code to Download


  1. or download this
    my @f;
    while ( $_ = scalar @f ? shift @f : <STDIN> ) {
      chomp;
      unshift(@f,"hi test test") if condition;
    }
    
  2. or download this
    my @f;
    {
      redo if $_ = shift @f || <STDIN>;
    }