When I write a program with options, I must put a space between the last
variable and the comma, else Stata don't understand that the last variable
is "varK" and not "varK,". How resolve this problem.
I have try to write my syntax line as :
syntax varlist[,option1 option2] instead of
syntax varlist [,option1 option2] but I obtain the same result.
Example with an xxx program :
xxx var1 var2 var3, option1 option2
=>, invalid name
=>r(198);