If I create code with:

BEGIN
{
   # something
   BEGIN
   {
     # something else
   }
}

Will the inner BEGIN block take precedence over the outer one, and thus
load any subroutines or whatever is in the inner begin block?  Or will
the second begin block be ignored and the compiler see:

BEGIN
{
  #something
  #something else
}

Thanks in advance,

Dan


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to