digitalmars.D.learn - label scope
- James (7/7) Nov 02 2008 im trying something like
- Jarrett Billingsley (2/9) Nov 02 2008 No, labels are local to the function.
- james (1/1) Nov 02 2008 ok thanks alot.
im trying something like labelx: foreach(...) { foreach(..) { continue labelx; } } just curious, how is the scope of label name. i mean does labelx can be called outside this function or not, so that i wont mess up in naming stuffs
Nov 02 2008
On Sun, Nov 2, 2008 at 11:22 PM, James <james gmail.com> wrote:im trying something like labelx: foreach(...) { foreach(..) { continue labelx; } } just curious, how is the scope of label name. i mean does labelx can be called outside this function or not, so that i wont mess up in naming stuffsNo, labels are local to the function.
Nov 02 2008