while (<STDIN>) { if (/QUIT/) { last; } push @thestack, $temp; }
- How do I<STDIN> to a stack until a pattern is match... Dan Anderson
- Re: How do I<STDIN> to a stack until a pattern... John W. Krahn
- Re: How do I<STDIN> to a stack until a pattern... R. Joseph Newton
- Motherofperls