10-31-2011, 10:19 AM
This is not exactly a bug. Every preprocessor line *must* start with # as a first character. Otherwise is a BASIC line (which will trigger a syntax error).
To tabulate preprocessor lines, use tab *after* the # symbol:
To tabulate preprocessor lines, use tab *after* the # symbol:
Code:
REM this is Wrong
# include <file.bas>
REM this is OK
# include <file.bas>