We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The FORM manual states that dictionaries can be used to replace the power sign in an expression. However, I can't seem to get this to work correctly.
The following program:
Symbols x; #OpenDictionary test #add ^:"**" #CloseDictionary Local F = x^2; #UseDictionary test Print; .end
Outputs:
F = x^2;
Rather than the expected:
F = x**2;
Is this a bug or am I misunderstanding how to use dictionaries?
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
da99189
Thankyou @vermaseren for fixing this so quickly! It seems to be working correctly for me.
test: #340, #345, #358, #359
40be8f5
No branches or pull requests
The FORM manual states that dictionaries can be used to replace the power sign in an expression. However, I can't seem to get this to work correctly.
The following program:
Outputs:
Rather than the expected:
Is this a bug or am I misunderstanding how to use dictionaries?
The text was updated successfully, but these errors were encountered: