When you use the /Preproccess command, there is a syntax-check on the file. Sometimes it makes sense to ignore the syntax. For example when you want to write a preproccessor. It is easier to use the "/preproccess" file, because all macros and compilerifs are expanded and you have only one big file.
also for the "/check" parameter. It would be nice to check the complete file and don't stop on the first error. In many cases there are more than one error and they don't affect each other.
Code: Select all
EnableExplicit
Define a,b,c
a=10
b=20
d=30
a=10
e=40
here on line 9 and 13 are two errors, d and e are not definied.