Hi,
How do I find my mistake in my code when the error message "Missing , at line 0" appears at program launch?
Even if I go into my program step by step using the debugger, the error message will popup at a certain time but I don't see what is causing it to appear and stop the program from execution.
"Missing , at line 0"
Re: "Missing , at line 0"
The error is occurring in an 'unnumbered' line (line 0) and I would not expect there to be many of those in your program: LBB normally allocates line numbers, even if your original program doesn't have them. So one place to start is to show the LBB Pane and to look for lines which don't have a number.
You may of course find that the line in question is not one translated from your original program but one which is created automatically by LBB during the translation process. In that case it may not be immediately obvious what in your original code has triggered it.