hi,

Any idea what the "continuation" will be ? Something similar like
while(){..}continue{..} construct, but more primitive/lower-level ?

{  my $val = 10 }  -=>  { print $val; $val = 11 } -=>  { print $val }

prints 10 and 11 i.e. lexicals of BLOCK1 are preserved for BLOCK2 and BLOCK3
i.e until continuation ends..

{  my $val = 10 }  -=>  { print $val; somesub(); $val = 11 } -=>  { print
$val }

somesub() still have access to $val .....
Or it will do other things too, not only extending the lexical scope...

Just thoughts !!!
=====
iVAN
[EMAIL PROTECTED]
=====

Reply via email to