good chemistry is complicated, and a little bit messy -LW |
|
PerlMonks |
perlfunc:resetby gods (Initiate) |
on Aug 24, 1999 at 22:42 UTC ( [id://256]=perlfunc: print w/replies, xml ) | Need Help?? |
resetSee the current Perl documentation for reset. Here is our local, out-dated (pre-5.6) version: reset - clear all variables of a given name
reset EXPR reset
Generally used in a continue block at the end of a loop to clear variables and reset
reset 'X'; # reset all X variables reset 'a-z'; # reset lower case variables reset; # just reset ?? searches
Resetting |
|