True or false. (Trying to figure out why this would be done with no assignment). In the following construct, the current value of $/ is protected by localizing it to the scope of the block. In this block, the current value of $/ is not changed.
{
local $/;
# do some things here. The value of $/ is not modified in any of
the code here.
}
Thank you.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/
