To just define the INBUILDSTANCE, and all that other juicy stuff in the thread, instead of compiling it with standard commands?
I feel it would be faster, at least a whee bit, because it doesn't have to check through that file, just the cob.
Would it be more efficient?
Moderator: Moderators
It doesn't even matter what it reads. In
#define x 1
#define y 2
z=1+x;
the second define would be looked at but since tghere are no ys in the text wouldn't do anything. Removing it would shorten the compile time slightly but if your COB takes more than a second or two to compile you're doing something seriously wrong anyway.
#define x 1
#define y 2
z=1+x;
the second define would be looked at but since tghere are no ys in the text wouldn't do anything. Removing it would shorten the compile time slightly but if your COB takes more than a second or two to compile you're doing something seriously wrong anyway.