Hello,
Is there a limit to how many arguments a LOCAL command admits?
A program that I am writing has the line
LOCAL A, B, C, I, J, K, X , Y, Z;
and results in a "bad syntax" message, with the cursor right before the Z. With that line replaced by two LOCAL, as
LOCAL A, B, C, I, J, K, X, Y;
LOCAL Z;
my program runs fine. So it seems that 8 is the maximum number of arguments for LOCAL. However page 533 of the User Guide seems to indicate that LOCAL admits any number of arguments.
Thank you.
Edited: 6 Oct 2013, 8:46 p.m.