You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Addendum: It appears to happen only when using 'Boolean' rather than 'boolean'. It may be my fault from the change I made when you added the capitalised Boolean - I updated just the operator_e file rather than downloading the entire compiler again - if your update changed some other part of the compiler in addition, then I may not have updated everything necessary?
This came up when trying to compile the x8algol compiler. Here's a minimal
version of the problem:
'begin'
'integer' fred, true;
'Boolean' jim;
true := 42;
fred := true;
jim := 'true';
'end';
This gives a compile error. Variable true seems to be clashing with
keyword true.
—
Reply to this email directly, view it on GitHub
<#12>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACCPHQGTIYKJTX4ZLTEXYPLXWRJCZANCNFSM6AAAAAA3ZNLSRQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
This came up when trying to compile the x8algol compiler. Here's a minimal version of the problem:
This gives a compile error. Variable true seems to be clashing with keyword true.
The text was updated successfully, but these errors were encountered: