(   BASIC programming and symbol scoping?   The Question is:    N Using OpenVMS BASIC v1.4, is it possible to declare functions with local scopeH  (in other words, the function is only defined within the context of the  current function)?     What we'd like to achieve: Program1    call functionA     call functionB  End Program1    functionA call function1 functionB call function1   < where function1 has the same name/label, but different code.   P I am familiar with how to do this in C, but am having trouble doing it in BASIC.           The Answer is :   7   This symbol scoping is outside the scope of the BASIC 9   programming language; BASIC does not offer module-local    (static) construct.    9   For information on programming BASIC on OpenVMS, please (   see the available BASIC documentation.   <   The OpenVMS Wizard would encourage use of unique names and<   symbols, both for BASIC itself and for reasons of software8   support and maintainability.  (The OpenVMS Wizard will;   assume there is a reason why this scoping is of interest, 9   though no details where provided -- accordingly, please 0   contact the customer support center directly.)   0  Answer written or last revised on  26-MAR-2004 