in reply to reset builtin

perlop has the following example
while (<>) { if (?^$?) { # blank line between header and body ... } } continue { reset if eof; # clear ?? status for next file }

Replies are listed 'Best First'.
Re^2: reset builtin
by morgon (Priest) on Apr 06, 2009 at 22:37 UTC
    Ok fair enough - I'll re-phrase my question:

    Can you show me a legitimate use of "reset 'X'" to reset all vars starting with X?

      No.

      There are uses for clearing an entire package (including subs), but it doesn't look like reset does that from the docs.