Hello all.
Is there a way to use $DEFINE in place of a const?
ex:
SCAR Code:{$DEFINE x=99}
begin
writeln(x);
end.
SCAR Code:...
const
x = 99;
begin
writeln(x);
end.
If so, can you please tell me how? I can't seem to figure it out. >.<
Thanks!
Macro_FTW




Reply With Quote




sorry I never use {$DEFINE} Thanks, Richard.
