Hmm, for me const, int, etc are highlighted as red.
As a side note, declaring something const seems to make it
so that it just doesn't change. So this:
const test = "not changed";
test = "changed";
Abort(test);
Aborts with "not changed", rather than giving an error
because you tried to change test...
But as far as I can tell the editor seems up to date.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=387078
Hmm, for me const, int, etc are highlighted as red.
As a side note, declaring something const seems to make it
so that it just doesn't change. So this:
const test = "not changed";
test = "changed";
Abort(test);
Aborts with "not changed", rather than giving an error
because you tried to change test...
But as far as I can tell the editor seems up to date.
Logged In: NO
Well, I thought red told you 'reserved identifier', which consts
isn't. Should be blue, it's a keyword!
- Dn7